1 45 46 package org.openejb.alt.assembler.classic.xml; 47 48 49 import org.openejb.OpenEJBException; 50 import org.openejb.alt.assembler.classic.JndiContextInfo; 51 import org.w3c.dom.Node ; 52 53 61 public class JndiContext extends JndiContextInfo implements DomObject{ 62 63 66 public static final String JNDI_CONTEXT_ID = "jndi-context-id"; 67 68 71 public void initializeFromDOM(Node node) throws OpenEJBException{ 72 jndiContextId = DomTools.getChildElementPCData(node, JNDI_CONTEXT_ID); 73 properties = DomTools.readProperties(node); 74 } 75 76 public void serializeToDOM(Node node) throws OpenEJBException{} 77 } 78 79 | Popular Tags |