Searched defs:boundPortType (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/wsdl/
H A DWSDLPortImpl.java57 private WSDLBoundPortTypeImpl boundPortType; field in class:WSDLPortImpl
103 return boundPortType;
107 return boundPortType.getSOAPVersion();
111 boundPortType = root.getBinding(bindingName);
112 if(boundPortType==null) {
118 features.setParentFeaturedObject(boundPortType);
119 notUnderstoodExtensions.addAll(boundPortType.notUnderstoodExtensions);
H A DWSDLModelImpl.java91 public void addBinding(WSDLBoundPortTypeImpl boundPortType){ argument
92 assert !bindings.containsValue(boundPortType);
93 bindings.put(boundPortType.getName(), boundPortType);
177 void finalizeRpcLitBinding(WSDLBoundPortTypeImpl boundPortType){ argument
178 assert(boundPortType != null);
179 QName portTypeName = boundPortType.getPortTypeName();
185 for (WSDLBoundOperationImpl bop : boundPortType.getBindingOperations()) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/message/
H A DMessage.java256 * @param boundPortType
268 public final @Nullable WSDLBoundOperation getOperation(@NotNull WSDLBoundPortType boundPortType) { argument
270 operation = boundPortType.getOperation(getPayloadNamespaceURI(),getPayloadLocalPart());
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/
H A DAbstractSEIModelImpl.java272 private List<ParameterImpl> applyRpcLitParamBinding(JavaMethodImpl method, WrapperParameter wrapperParameter, WSDLBoundPortTypeImpl boundPortType, Mode mode) { argument
273 QName opName = new QName(boundPortType.getPortTypeName().getNamespaceURI(), method.getOperationName());
274 WSDLBoundOperationImpl bo = boundPortType.get(opName);
283 ParameterBinding paramBinding = boundPortType.getBinding(opName,

Completed in 26 milliseconds