Methods Summary |
---|
protected void | Init()Initializes the child handler;
// we do not care about standard DDs common tags
handlers=null;
|
public void | addDescriptor(java.lang.Object descriptor)Adds a new DOL descriptor instance to the descriptor instance associated with
this XMLNode
return;
|
public java.lang.Object | getDescriptor()
return descriptor;
|
public java.lang.String | getSpecVersion()
return "1.4";
|
protected static final boolean | restrictDTDDeclarations()
if (restrictDTDDeclarations==null) {
restrictDTDDeclarations = Boolean.valueOf(Boolean.getBoolean("com.sun.aas.deployment.restrictdtddeclarations"));
}
return restrictDTDDeclarations.booleanValue();
|
public void | setDocType(java.lang.String docType)set the DOCTYPE as read in the input XML File
// I do not care about the version of the runtime descriptors
|
protected void | setSpecVersion()Sets the specVersion for this descriptor depending on the docType
// I do not care about the version of the runtime descriptors
|
protected void | writeMessageDestinationInfo(org.w3c.dom.Node parent, com.sun.enterprise.deployment.BundleDescriptor descriptor)writes the message destination references runtime information
for(Iterator iter = descriptor.getMessageDestinations().iterator();
iter.hasNext();) {
MessageDestinationRuntimeNode node =
new MessageDestinationRuntimeNode();
node.writeDescriptor(parent, RuntimeTagNames.MESSAGE_DESTINATION,
(MessageDestinationDescriptor) iter.next());
}
|