Package com.sun.java.xml.ns.j2Ee

Examples of com.sun.java.xml.ns.j2Ee.WebserviceDescriptionType


   }

   private WebserviceDescriptionType getWebserviceDescription( WebserviceDescriptionType[] wsDescArray,
                                                               String                      wsDescName )
   {
      WebserviceDescriptionType wsDesc = null;
      for ( int i = 0; i < wsDescArray.length; i++ )
      {
         if ( wsDescArray[i].getWebserviceDescriptionName(  ).getStringValue(  ).equals( wsDescName ) )
         {
            wsDesc = wsDescArray[i];
View Full Code Here


   {
      WebserviceDescriptionType[] wsDescArray       = webservices.getWebserviceDescriptionArray(  );
      WebserviceDescriptionType[] targetWsDescArray = targetWebservices.getWebserviceDescriptionArray(  );
      for ( int i = 0; i < wsDescArray.length; i++ )
      {
         WebserviceDescriptionType wsDesc       = wsDescArray[i];
         String                    wsDescName   = wsDesc.getWebserviceDescriptionName(  ).getStringValue(  );
         WebserviceDescriptionType targetWsDesc = getWebserviceDescription( targetWsDescArray, wsDescName );
         if ( targetWsDesc == null )
         {
            targetWsDesc = targetWebservices.addNewWebserviceDescription(  );
         }

         targetWsDesc.set( wsDesc );
      }
   }
View Full Code Here

TOP

Related Classes of com.sun.java.xml.ns.j2Ee.WebserviceDescriptionType

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.