Package org.jboss.wsf.spi.metadata.j2ee.serviceref

Examples of org.jboss.wsf.spi.metadata.j2ee.serviceref.UnifiedCallPropertyMetaData


         child = new UnifiedHandlerChainsMetaData();
         ref.setHandlerChains((UnifiedHandlerChainsMetaData)child);
      }
      else if (localName.equals("call-property"))
      {
         child = new UnifiedCallPropertyMetaData();
         ref.addCallProperty((UnifiedCallPropertyMetaData)child);
      }     
      return child;
   }
View Full Code Here


   private Object newChild(UnifiedPortComponentRefMetaData ref, UnmarshallingContext navigator, String namespaceURI, String localName, Attributes attrs)
   {
      Object child = null;
      if (localName.equals("call-property"))
      {
         child = new UnifiedCallPropertyMetaData();
         ref.addCallProperty((UnifiedCallPropertyMetaData)child);
      }
      if (localName.equals("stub-property"))
      {
         child = new UnifiedStubPropertyMetaData();
View Full Code Here

/* 237 */       List callProps = jbpcref.getCallProperties();
/* 238 */       if (callProps != null)
/*     */       {
/* 240 */         for (CallPropertyMetaData callProp : callProps)
/*     */         {
/* 242 */           UnifiedCallPropertyMetaData prop = new UnifiedCallPropertyMetaData();
/* 243 */           prop.setPropName(callProp.getPropName());
/* 244 */           prop.setPropValue(callProp.getPropValue());
/* 245 */           result.addCallProperty(prop);
/*     */         }
/*     */       }
/*     */     }
/* 249 */     return result;
View Full Code Here

TOP

Related Classes of org.jboss.wsf.spi.metadata.j2ee.serviceref.UnifiedCallPropertyMetaData

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.