Interface SOAPBinding
- All Superinterfaces:
- Binding
public interface SOAPBinding extends Binding
The SOAPBinding
interface is an abstraction for the SOAP binding.
- Since:
- JAX-WS 2.0
Fields
Modifier and Type | Field and Description |
---|---|
static String |
SOAP11HTTP_BINDING A constant representing the identity of the SOAP 1.1 over HTTP binding. |
static String |
SOAP11HTTP_MTOM_BINDING A constant representing the identity of the SOAP 1.1 over HTTP binding with MTOM enabled by default. |
static String |
SOAP12HTTP_BINDING A constant representing the identity of the SOAP 1.2 over HTTP binding. |
static String |
SOAP12HTTP_MTOM_BINDING A constant representing the identity of the SOAP 1.2 over HTTP binding with MTOM enabled by default. |
Methods
Modifier and Type | Method and Description |
---|---|
MessageFactory |
getMessageFactory() Gets the SAAJ |
Set<String> |
getRoles() Gets the roles played by the SOAP binding instance. |
SOAPFactory |
getSOAPFactory() Gets the SAAJ |
boolean |
isMTOMEnabled() Returns |
void |
setMTOMEnabled(boolean flag) Enables or disables use of MTOM. |
void |
setRoles(Set<String> roles) Sets the roles played by the SOAP binding instance. |
Methods inherited from interface javax.xml.ws.Binding
getBindingID, getHandlerChain, setHandlerChain
Fields
SOAP11HTTP_BINDING
static final String SOAP11HTTP_BINDING
A constant representing the identity of the SOAP 1.1 over HTTP binding.
- See Also:
- Constant Field Values
SOAP12HTTP_BINDING
static final String SOAP12HTTP_BINDING
A constant representing the identity of the SOAP 1.2 over HTTP binding.
- See Also:
- Constant Field Values
SOAP11HTTP_MTOM_BINDING
static final String SOAP11HTTP_MTOM_BINDING
A constant representing the identity of the SOAP 1.1 over HTTP binding with MTOM enabled by default.
- See Also:
- Constant Field Values
SOAP12HTTP_MTOM_BINDING
static final String SOAP12HTTP_MTOM_BINDING
A constant representing the identity of the SOAP 1.2 over HTTP binding with MTOM enabled by default.
- See Also:
- Constant Field Values
Methods
getRoles
Set<String> getRoles()
Gets the roles played by the SOAP binding instance.
- Returns:
- Set<String> The set of roles played by the binding instance.
setRoles
void setRoles(Set<String> roles)
Sets the roles played by the SOAP binding instance.
- Parameters:
-
roles
- The set of roles played by the binding instance. - Throws:
-
WebServiceException
- On an error in the configuration of the list of roles.
isMTOMEnabled
boolean isMTOMEnabled()
Returns true
if the use of MTOM is enabled.
- Returns:
-
true
if and only if the use of MTOM is enabled.
setMTOMEnabled
void setMTOMEnabled(boolean flag)
Enables or disables use of MTOM.
- Parameters:
-
flag
- Aboolean
specifying whether the use of MTOM should be enabled or disabled. - Throws:
-
WebServiceException
- If the specified setting is not supported by this binding instance.
getSOAPFactory
SOAPFactory getSOAPFactory()
Gets the SAAJ SOAPFactory
instance used by this SOAP binding.
- Returns:
- SOAPFactory instance used by this SOAP binding.
getMessageFactory
MessageFactory getMessageFactory()
Gets the SAAJ MessageFactory
instance used by this SOAP binding.
- Returns:
- MessageFactory instance used by this SOAP binding.
© 1993, 2020, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/javase/8/docs/api/javax/xml/ws/soap/SOAPBinding.html