Package com.sun.enterprise.deployment.node.runtime.common

Examples of com.sun.enterprise.deployment.node.runtime.common.RuntimeNameValuePairNode


  setAttribute(raNode, RuntimeTagNames.IDLE_TIMEOUT_IN_SECONDS, (String) descriptor.getValue(ResourceAdapter.IDLE_TIMEOUT_IN_SECONDS));

  // properties...
  NameValuePairDescriptor[] properties = descriptor.getPropertyElement();
  if (properties!=null && properties.length>0) {
      RuntimeNameValuePairNode subNode = new RuntimeNameValuePairNode();
      for (int i=0;i<properties.length;i++) {
    subNode.writeDescriptor(raNode, RuntimeTagNames.PROPERTY, properties[i]);
      }
  }
 
  return raNode;
    }   
View Full Code Here


                        endpoint.getDebugging());

        //property*
        Iterator properties = endpoint.getProperties();
        if (properties!=null) {
            RuntimeNameValuePairNode propNode = new RuntimeNameValuePairNode();       
            while (properties.hasNext()) {
                NameValuePairDescriptor aProp = (NameValuePairDescriptor) properties.next();
                propNode.writeDescriptor(endpointNode, RuntimeTagNames.PROPERTY, aProp);
            }
      }
                           
        return endpointNode;
    }
View Full Code Here

TOP

Related Classes of com.sun.enterprise.deployment.node.runtime.common.RuntimeNameValuePairNode

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.