Uses of Interface
com.sun.xml.ws.api.model.wsdl.WSDLBoundOperation

Packages that use WSDLBoundOperation
com.sun.xml.ws.addressing   
com.sun.xml.ws.api.message Message and related abstractions that represent a SOAP message. 
com.sun.xml.ws.api.model   
com.sun.xml.ws.api.model.wsdl   
com.sun.xml.ws.api.model.wsdl.editable   
com.sun.xml.ws.model   
com.sun.xml.ws.model.wsdl   
com.sun.xml.ws.wsdl   
com.sun.xml.wss.jaxws.impl   
com.sun.xml.wss.provider.wsit   
 

Uses of WSDLBoundOperation in com.sun.xml.ws.addressing
 

Methods in com.sun.xml.ws.addressing with parameters of type WSDLBoundOperation
protected  void W3CWsaServerTube.checkAnonymousSemantics(WSDLBoundOperation wbo, WSEndpointReference replyTo, WSEndpointReference faultTo)
           
protected  void WsaServerTube.checkAnonymousSemantics(WSDLBoundOperation wbo, WSEndpointReference replyTo, WSEndpointReference faultTo)
           
protected  boolean W3CWsaServerTube.isAnonymousRequired(WSDLBoundOperation wbo)
           
protected  boolean WsaServerTube.isAnonymousRequired(WSDLBoundOperation wbo)
           
 

Uses of WSDLBoundOperation in com.sun.xml.ws.api.message
 

Methods in com.sun.xml.ws.api.message that return WSDLBoundOperation
 WSDLBoundOperation Message.getOperation(WSDLBoundPortType boundPortType)
          Deprecated. It is not always possible to uniquely identify the WSDL Operation from just the information in the Message. Instead, Use Packet.getWSDLOperation() to get it correctly.

This method works only for a request. A pipe can determine an operation for a request, and then keep it in a local variable to use it with a response, so there should be no need to find out operation from a response (besides, there might not be any response!).

 WSDLBoundOperation Message.getOperation(WSDLPort port)
          Deprecated. It is not always possible to uniquely identify the WSDL Operation from just the information in the Message. Instead, Use Packet.getWSDLOperation() to get it correctly.
 

Uses of WSDLBoundOperation in com.sun.xml.ws.api.model
 

Methods in com.sun.xml.ws.api.model that return WSDLBoundOperation
 WSDLBoundOperation WSDLOperationMapping.getWSDLBoundOperation()
           
 

Uses of WSDLBoundOperation in com.sun.xml.ws.api.model.wsdl
 

Methods in com.sun.xml.ws.api.model.wsdl that return WSDLBoundOperation
 WSDLBoundOperation WSDLBoundPortType.get(QName operationName)
          Gets the WSDLBoundOperation for a given operation name
 WSDLBoundOperation WSDLBoundFault.getBoundOperation()
          Gives the owner WSDLBoundOperation
 WSDLBoundOperation WSDLBoundPortType.getOperation(String namespaceUri, String localName)
          Gets the bound operation in this port for a tag name.
 

Methods in com.sun.xml.ws.api.model.wsdl that return types with arguments of type WSDLBoundOperation
 Iterable<? extends WSDLBoundOperation> WSDLBoundPortType.getBindingOperations()
          Gets the WSDLBoundOperations
 

Uses of WSDLBoundOperation in com.sun.xml.ws.api.model.wsdl.editable
 

Subinterfaces of WSDLBoundOperation in com.sun.xml.ws.api.model.wsdl.editable
 interface EditableWSDLBoundOperation
           
 

Uses of WSDLBoundOperation in com.sun.xml.ws.model
 

Methods in com.sun.xml.ws.model that return WSDLBoundOperation
 WSDLBoundOperation JavaMethodImpl.getOperation()
          Deprecated.  
 

Uses of WSDLBoundOperation in com.sun.xml.ws.model.wsdl
 

Classes in com.sun.xml.ws.model.wsdl that implement WSDLBoundOperation
 class WSDLBoundOperationImpl
          Implementation of WSDLBoundOperation
 

Uses of WSDLBoundOperation in com.sun.xml.ws.wsdl
 

Methods in com.sun.xml.ws.wsdl with parameters of type WSDLBoundOperation
protected  WSDLOperationMapping WSDLOperationFinder.wsdlOperationMapping(WSDLBoundOperation o)
           
 

Uses of WSDLBoundOperation in com.sun.xml.wss.jaxws.impl
 

Fields in com.sun.xml.wss.jaxws.impl declared as WSDLBoundOperation
protected  WSDLBoundOperation SecurityTubeBase.cachedOperation
          Constants for RM Security Processing
 

Methods in com.sun.xml.wss.jaxws.impl that return WSDLBoundOperation
protected  WSDLBoundOperation SecurityTubeBase.getOperation(Message message)
           
protected  WSDLBoundOperation SecurityTubeBase.getWSDLOpFromAction(Packet packet, boolean isIncomming)
           
protected  WSDLBoundOperation SecurityTubeBase.getWSDLOpFromAction(Packet packet, boolean isIncomming, boolean isFault)
           
 

Methods in com.sun.xml.wss.jaxws.impl with parameters of type WSDLBoundOperation
protected  SecurityPolicyHolder SecurityClientTube.addIncomingMP(WSDLBoundOperation operation, Policy policy, PolicyAlternativeHolder ph)
           
protected  SecurityPolicyHolder SecurityServerTube.addIncomingMP(WSDLBoundOperation operation, Policy policy, PolicyAlternativeHolder ph)
           
protected abstract  SecurityPolicyHolder SecurityTubeBase.addIncomingMP(WSDLBoundOperation operation, Policy policy, PolicyAlternativeHolder ph)
           
protected  SecurityPolicyHolder SecurityClientTube.addOutgoingMP(WSDLBoundOperation operation, Policy policy, PolicyAlternativeHolder ph)
           
protected  SecurityPolicyHolder SecurityServerTube.addOutgoingMP(WSDLBoundOperation operation, Policy policy, PolicyAlternativeHolder ph)
          private Packet addAddressingHeaders(Packet packet, String relatesTo, String action){ AddressingBuilder builder = AddressingBuilder.newInstance(); AddressingProperties ap = builder.newAddressingProperties(); try{ // Action ap.setAction(builder.newURI(new URI(action))); // RelatesTo Relationship[] rs = new Relationship[]{builder.newRelationship(new URI(relatesTo))}; ap.setRelatesTo(rs); // To ap.setTo(builder.newURI(new URI(builder.newAddressingConstants().getAnonymousURI()))); } catch (URISyntaxException e) { throw new RuntimeException("Exception when adding Addressing Headers"); } WsaRuntimeFactory fac = WsaRuntimeFactory.newInstance(ap.getNamespaceURI(), pipeConfig.getWSDLModel(), pipeConfig.getBinding()); fac.writeHeaders(packet, ap); packet.invocationProperties .put(JAXWSAConstants.SERVER_ADDRESSING_PROPERTIES_OUTBOUND, ap); return packet; }
protected abstract  SecurityPolicyHolder SecurityTubeBase.addOutgoingMP(WSDLBoundOperation operation, Policy policy, PolicyAlternativeHolder ph)
           
 

Constructors in com.sun.xml.wss.jaxws.impl with parameters of type WSDLBoundOperation
PolicyResolverImpl(HashMap<WSDLBoundOperation,SecurityPolicyHolder> inMessagePolicyMap, HashMap<String,SecurityPolicyHolder> ip, WSDLBoundOperation cachedOperation, TubeConfiguration tubeConfig, AddressingVersion addVer, boolean isClient, RmProtocolVersion rmVer, McProtocolVersion mcVer)
          Creates a new instance of OperationResolverImpl
 

Constructor parameters in com.sun.xml.wss.jaxws.impl with type arguments of type WSDLBoundOperation
PolicyResolverImpl(HashMap<WSDLBoundOperation,SecurityPolicyHolder> inMessagePolicyMap, HashMap<String,SecurityPolicyHolder> ip, WSDLBoundOperation cachedOperation, TubeConfiguration tubeConfig, AddressingVersion addVer, boolean isClient, RmProtocolVersion rmVer, McProtocolVersion mcVer)
          Creates a new instance of OperationResolverImpl
 

Uses of WSDLBoundOperation in com.sun.xml.wss.provider.wsit
 

Methods in com.sun.xml.wss.provider.wsit that return WSDLBoundOperation
protected  WSDLBoundOperation WSITAuthContextBase.cachedOperation(Packet packet)
           
protected  WSDLBoundOperation WSITAuthContextBase.cacheOperation(Message msg, Packet packet)
           
protected  WSDLBoundOperation WSITAuthContextBase.getOperation(Message message, Packet packet)
           
protected  WSDLBoundOperation WSITAuthContextBase.getWSDLOpFromAction(Packet packet, boolean isIncomming)
           
 

Methods in com.sun.xml.wss.provider.wsit that return types with arguments of type WSDLBoundOperation
 HashMap<WSDLBoundOperation,SecurityPolicyHolder> PolicyAlternativeHolder.getInMessagePolicyMap()
           
 HashMap<WSDLBoundOperation,SecurityPolicyHolder> PolicyAlternativeHolder.getOutMessagePolicyMap()
           
 

Methods in com.sun.xml.wss.provider.wsit with parameters of type WSDLBoundOperation
protected abstract  SecurityPolicyHolder WSITAuthContextBase.addIncomingMP(WSDLBoundOperation operation, Policy policy, PolicyAlternativeHolder ph)
           
protected  SecurityPolicyHolder WSITClientAuthContext.addIncomingMP(WSDLBoundOperation operation, Policy policy, PolicyAlternativeHolder ph)
           
protected  SecurityPolicyHolder WSITServerAuthContext.addIncomingMP(WSDLBoundOperation operation, Policy policy, PolicyAlternativeHolder ph)
           
protected abstract  SecurityPolicyHolder WSITAuthContextBase.addOutgoingMP(WSDLBoundOperation operation, Policy policy, PolicyAlternativeHolder ph)
           
protected  SecurityPolicyHolder WSITClientAuthContext.addOutgoingMP(WSDLBoundOperation operation, Policy policy, PolicyAlternativeHolder ph)
           
protected  SecurityPolicyHolder WSITServerAuthContext.addOutgoingMP(WSDLBoundOperation operation, Policy policy, PolicyAlternativeHolder ph)
           
protected  void WSITAuthContextBase.cacheOperation(WSDLBoundOperation op, Packet packet)
           
static PolicyResolver PolicyResolverFactory.createPolicyResolver(HashMap<WSDLBoundOperation,SecurityPolicyHolder> inMessagePolicyMap, HashMap<String,SecurityPolicyHolder> ip, WSDLBoundOperation cachedOperation, TubeConfiguration tubeConfig, AddressingVersion addVer, boolean isClient, RmProtocolVersion rmVer, McProtocolVersion mcVer)
           
static PolicyResolver PolicyResolverFactory.createPolicyResolver(List<PolicyAlternativeHolder> alternatives, WSDLBoundOperation cachedOperation, TubeConfiguration tubeConfig, AddressingVersion addVer, boolean isClient, RmProtocolVersion rmVer, McProtocolVersion mcVer)
           
 SecurityPolicyHolder PolicyAlternativeHolder.getFromInMessagePolicyMap(WSDLBoundOperation op)
           
 SecurityPolicyHolder PolicyAlternativeHolder.getFromOutMessagePolicyMap(WSDLBoundOperation op)
           
 void PolicyAlternativeHolder.putToInMessagePolicyMap(WSDLBoundOperation op, SecurityPolicyHolder sh)
           
 void PolicyAlternativeHolder.putToOutMessagePolicyMap(WSDLBoundOperation op, SecurityPolicyHolder sh)
           
 

Method parameters in com.sun.xml.wss.provider.wsit with type arguments of type WSDLBoundOperation
static PolicyResolver PolicyResolverFactory.createPolicyResolver(HashMap<WSDLBoundOperation,SecurityPolicyHolder> inMessagePolicyMap, HashMap<String,SecurityPolicyHolder> ip, WSDLBoundOperation cachedOperation, TubeConfiguration tubeConfig, AddressingVersion addVer, boolean isClient, RmProtocolVersion rmVer, McProtocolVersion mcVer)
           
 



Copyright © 2005-2015 Oracle Corporation. All Rights Reserved.