Examples of WSDLRPCSignatureItem


Examples of org.jboss.ws.metadata.wsdl.WSDLRPCSignatureItem

      else
      {
         direction = Direction.IN;
      }

      operation.addRpcSignatureItem(new WSDLRPCSignatureItem(param.getPartName(), direction));
   }
View Full Code Here

Examples of org.jboss.ws.metadata.wsdl.WSDLRPCSignatureItem

/*     */     }
/*     */   }
/*     */
/*     */   private ParameterMetaData buildInputParameter(OperationMetaData opMetaData, WSDLInterfaceOperation wsdlOperation, ServiceEndpointMethodMapping seiMethodMapping, TypeMappingImpl typeMapping, String partName, QName xmlName, QName xmlType, int pos, boolean optional)
/*     */   {
/* 228 */     WSDLRPCSignatureItem item = wsdlOperation.getRpcSignatureitem(partName);
/* 229 */     if (item != null) {
/* 230 */       pos = item.getPosition();
/*     */     }
/* 232 */     String javaTypeName = typeMapping.getJavaTypeName(xmlType);
/* 233 */     boolean mapped = false;
/* 234 */     if (seiMethodMapping != null)
/*     */     {
View Full Code Here

Examples of org.jboss.ws.metadata.wsdl.WSDLRPCSignatureItem

/*     */
/*     */   private ParameterMetaData buildOutputParameter(OperationMetaData opMetaData, WSDLInterfaceOperation wsdlOperation, ServiceEndpointMethodMapping seiMethodMapping, int pos, String partName, QName xmlName, QName xmlType, TypeMappingImpl typeMapping, boolean optional)
/*     */   {
/* 292 */     boolean hasReturnMapping = opMetaData.getReturnParameter() == null;
/*     */
/* 294 */     WSDLRPCSignatureItem item = wsdlOperation.getRpcSignatureitem(partName);
/* 295 */     if (item != null)
/*     */     {
/* 297 */       hasReturnMapping = item.getDirection() == WSDLRPCSignatureItem.Direction.RETURN;
/* 298 */       pos = item.getPosition();
/*     */     }
/*     */
/* 301 */     String javaTypeName = typeMapping.getJavaTypeName(xmlType);
/*     */
/* 303 */     boolean mapped = false;
View Full Code Here

Examples of org.jboss.ws.metadata.wsdl.WSDLRPCSignatureItem

/*  695 */       if (paramOrder != null)
/*      */       {
/*  697 */         for (String name : paramOrder)
/*      */         {
/*  699 */           if (srcMessage.getPart(name) != null) {
/*  700 */             destOperation.addRpcSignatureItem(new WSDLRPCSignatureItem(name));
/*      */           }
/*      */         }
/*      */       }
/*  704 */       WSDLInterfaceOperationInput rpcInput = new WSDLInterfaceOperationInput(destOperation);
/*  705 */       for (Part srcPart : srcMessage.getOrderedParts(paramOrder))
View Full Code Here

Examples of org.jboss.ws.metadata.wsdl.WSDLRPCSignatureItem

/*      */     {
/*  796 */       for (String name : paramOrder)
/*      */       {
/*  798 */         if (srcMessage.getPart(name) != null)
/*      */         {
/*  800 */           WSDLRPCSignatureItem item = destOperation.getRpcSignatureitem(name);
/*  801 */           if (item != null)
/*  802 */             item.setDirection(WSDLRPCSignatureItem.Direction.INOUT);
/*  803 */           else destOperation.addRpcSignatureItem(new WSDLRPCSignatureItem(name, WSDLRPCSignatureItem.Direction.OUT));
/*      */         }
/*      */       }
/*      */     }
/*      */
/*  808 */     WSDLInterfaceOperationOutput rpcOutput = new WSDLInterfaceOperationOutput(destOperation);
View Full Code Here

Examples of org.jboss.ws.metadata.wsdl.WSDLRPCSignatureItem

/*     */         {
/* 248 */           direction = WSDLRPCSignatureItem.Direction.IN;
/*     */         }
/*     */       }
/*     */     }
/* 251 */     operation.addRpcSignatureItem(new WSDLRPCSignatureItem(param.getPartName(), direction));
/*     */   }
View Full Code Here

Examples of org.jboss.ws.metadata.wsdl.WSDLRPCSignatureItem

         if (paramOrder != null)
         {
            for (String name : paramOrder)
            {
               if (srcMessage.getPart(name) != null)
                  destOperation.addRpcSignatureItem(new WSDLRPCSignatureItem(name));
            }
         }

         WSDLInterfaceOperationInput rpcInput = new WSDLInterfaceOperationInput(destOperation);
         for (Part srcPart : (List<Part>)srcMessage.getOrderedParts(paramOrder))
View Full Code Here

Examples of org.jboss.ws.metadata.wsdl.WSDLRPCSignatureItem

      {
         for (String name : paramOrder)
         {
            if (srcMessage.getPart(name) != null)
            {
               WSDLRPCSignatureItem item = destOperation.getRpcSignatureitem(name);
               if (item != null)
                  item.setDirection(Direction.INOUT);
               else destOperation.addRpcSignatureItem(new WSDLRPCSignatureItem(name, Direction.OUT));
            }
         }
      }

      WSDLInterfaceOperationOutput rpcOutput = new WSDLInterfaceOperationOutput(destOperation);
View Full Code Here

Examples of org.jboss.ws.metadata.wsdl.WSDLRPCSignatureItem

      else
      {
         direction = Direction.IN;
      }

      operation.addRpcSignatureItem(new WSDLRPCSignatureItem(param.getPartName(), direction));
   }
View Full Code Here

Examples of org.jboss.ws.metadata.wsdl.WSDLRPCSignatureItem

         if (paramOrder != null)
         {
            for (String name : paramOrder)
            {
               if (srcMessage.getPart(name) != null)
                  destOperation.addRpcSignatureItem(new WSDLRPCSignatureItem(name));
            }
         }

         WSDLInterfaceOperationInput rpcInput = new WSDLInterfaceOperationInput(destOperation);
         for (Part srcPart : (List<Part>)srcMessage.getOrderedParts(paramOrder))
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.