1 23 24 package com.sun.enterprise.deployment.node.runtime.web; 25 26 import com.sun.enterprise.deployment.runtime.web.WebPropertyContainer; 27 import com.sun.enterprise.deployment.node.XMLElement; 28 import com.sun.enterprise.deployment.xml.RuntimeTagNames; 29 30 35 public class WebPropertyContainerNode extends WebRuntimeNode { 36 37 40 public WebPropertyContainerNode() { 41 42 registerElementHandler(new XMLElement(RuntimeTagNames.PROPERTY), 43 WebPropertyNode.class, "addWebProperty"); 44 } 45 } 46 | Popular Tags |