FileDocCategorySizeDatePackage
CacheHelperNode.javaAPI DocGlassfish v2 API4460Fri May 04 22:31:48 BST 2007com.sun.enterprise.deployment.node.runtime.web

CacheHelperNode

public class CacheHelperNode extends WebRuntimeNode
node for cache-helper tag
author
Jerome Dochez

Fields Summary
Constructors Summary
public CacheHelperNode()

	
        registerElementHandler(new XMLElement(RuntimeTagNames.PROPERTY), 
                               WebPropertyNode.class, "addWebProperty"); 			       
    
Methods Summary
protected booleansetAttributeValue(com.sun.enterprise.deployment.node.XMLElement elementName, com.sun.enterprise.deployment.node.XMLElement attributeName, java.lang.String value)
parsed an attribute of an element

param
the element name
param
the attribute name
param
the attribute value
return
true if the attribute was processed

	RuntimeDescriptor descriptor = (RuntimeDescriptor) getRuntimeDescriptor();
	if (descriptor==null) {
	    throw new RuntimeException("Trying to set values on a null descriptor");
	} 	
	if (attributeName.getQName().equals(RuntimeTagNames.NAME)) {
	    descriptor.setAttributeValue(CacheHelper.NAME, value);
	    return true;
	} else
	if (attributeName.getQName().equals(RuntimeTagNames.CLASS_NAME)) {
	    descriptor.setAttributeValue(CacheHelper.CLASS_NAME, value);
	    return true;
	}  
	return false;
    
public org.w3c.dom.NodewriteDescriptor(org.w3c.dom.Node parent, java.lang.String nodeName, com.sun.enterprise.deployment.runtime.web.CacheHelper descriptor)
write the descriptor class to a DOM tree and return it

param
parent node for the DOM tree
param
node name
param
the descriptor to write
return
the DOM tree top node

    

	Element cacheHelper = (Element) super.writeDescriptor(parent, nodeName, descriptor);
	
	// property*
	WebProperty[] properties = descriptor.getWebProperty();
	if (properties.length>0) {
	    WebPropertyNode wpn = new WebPropertyNode();
	    wpn.writeDescriptor(cacheHelper, RuntimeTagNames.PROPERTY, properties);
	}
	
	// name, class-name attribute
	setAttribute(cacheHelper, RuntimeTagNames.NAME, (String) descriptor.getAttributeValue(CacheHelper.NAME));
	setAttribute(cacheHelper, RuntimeTagNames.CLASS_NAME, (String) descriptor.getAttributeValue(CacheHelper.CLASS_NAME));
	
	return cacheHelper;