Interface Provider<T>
public interface Provider<T>
Service endpoints may implement the Provider
interface as a dynamic alternative to an SEI.
Implementations are required to support Provider<Source>
, Provider<SOAPMessage>
and Provider<DataSource>
, depending on the binding in use and the service mode.
The ServiceMode
annotation can be used to control whether the Provider
instance will receive entire protocol messages or just message payloads.
- Since:
- JAX-WS 2.0
- See Also:
-
Source
,SOAPMessage
,ServiceMode
Methods
Modifier and Type | Method and Description |
---|---|
T |
invoke(T request) Invokes an operation occording to the contents of the request message. |
Methods
invoke
T invoke(T request)
Invokes an operation occording to the contents of the request message.
- Parameters:
-
request
- The request message or message payload. - Returns:
- The response message or message payload. May be
null
if there is no response. - Throws:
-
WebServiceException
- If there is an error processing request. The cause of theWebServiceException
may be set to a subclass ofProtocolException
to control the protocol level representation of the exception. - See Also:
-
MessageContext
,ProtocolException
© 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/Provider.html