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

Examples of com.sun.enterprise.deployment.node.runtime.common.RuntimeNameValuePairNode.writeDescriptor()


  // 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


        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
Copyright © 2018 www.massapi.com. 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.