Package | Description |
---|---|
com.arjuna.mw.wst11.client | |
com.arjuna.schemas.ws._2005._10.wsarjtx | |
com.arjuna.webservices11.util | |
javax.xml.ws |
This package contains the core JAX-WS APIs.
|
javax.xml.ws.soap |
This package defines APIs specific to the SOAP binding.
|
javax.xml.ws.spi |
This package defines SPIs for JAX-WS.
|
org.apache.cxf.databinding.stax | |
org.apache.cxf.feature | |
org.apache.cxf.feature.transform | |
org.apache.cxf.feature.validation | |
org.apache.cxf.interceptor.security | |
org.apache.cxf.transport.common.gzip | |
org.apache.cxf.validation | |
org.apache.cxf.ws.addressing | |
org.jboss.jbossts.txbridge.outbound | |
org.jboss.ws.api.configuration | |
org.oasis_open.docs.ws_tx.wsat._2006._06 | |
org.oasis_open.docs.ws_tx.wsba._2006._06 | |
org.oasis_open.docs.ws_tx.wscoor._2006._06 |
Modifier and Type | Class and Description |
---|---|
class |
WSTXFeature
Web service feature is used to enable or disable WS-AT/WS-BA context propagation for specific port.
|
Modifier and Type | Method and Description |
---|---|
TerminationCoordinatorPortType |
TerminationCoordinatorService.getTerminationCoordinatorPortType(WebServiceFeature... features) |
TerminationCoordinatorRPCPortType |
TerminationCoordinatorRPCService.getTerminationCoordinatorRPCPortType(WebServiceFeature... features) |
TerminationParticipantPortType |
TerminationParticipantService.getTerminationParticipantPortType(WebServiceFeature... features) |
Modifier and Type | Method and Description |
---|---|
<T> T |
PrivilegedServiceHelper.getPort(Service service,
Class<T> serviceEndpointInterface,
WebServiceFeature... features) |
<T> T |
PrivilegedServiceHelper.getPort(Service service,
EndpointReference endpointReference,
Class<T> serviceEndpointInterface,
WebServiceFeature... features) |
<T> T |
PrivilegedServiceHelper.getPort(Service service,
QName portName,
Class<T> serviceEndpointInterface,
WebServiceFeature... features) |
Modifier and Type | Class and Description |
---|---|
class |
RespectBindingFeature
This feature clarifies the use of the
wsdl:binding
in a JAX-WS runtime. |
Modifier and Type | Method and Description |
---|---|
static Endpoint |
Endpoint.create(Object implementor,
WebServiceFeature... features)
Creates an endpoint with the specified implementor object and web
service features.
|
static Service |
Service.create(QName serviceName,
WebServiceFeature... features)
Creates a
Service instance. |
static Endpoint |
Endpoint.create(String bindingId,
Object implementor,
WebServiceFeature... features)
Creates an endpoint with the specified binding type,
implementor object, and web service features.
|
static Service |
Service.create(URL wsdlDocumentLocation,
QName serviceName,
WebServiceFeature... features)
Creates a
Service instance. |
<T> Dispatch<T> |
Service.createDispatch(EndpointReference endpointReference,
Class<T> type,
Service.Mode mode,
WebServiceFeature... features)
Creates a
Dispatch instance for use with objects of
the client's choosing. |
Dispatch<Object> |
Service.createDispatch(EndpointReference endpointReference,
JAXBContext context,
Service.Mode mode,
WebServiceFeature... features)
Creates a
Dispatch instance for use with JAXB
generated objects. |
<T> Dispatch<T> |
Service.createDispatch(QName portName,
Class<T> type,
Service.Mode mode,
WebServiceFeature... features)
Creates a
Dispatch instance for use with objects of
the client's choosing. |
Dispatch<Object> |
Service.createDispatch(QName portName,
JAXBContext context,
Service.Mode mode,
WebServiceFeature... features)
Creates a
Dispatch instance for use with JAXB
generated objects. |
<T> T |
Service.getPort(Class<T> serviceEndpointInterface,
WebServiceFeature... features)
The
getPort method returns a proxy. |
<T> T |
EndpointReference.getPort(Class<T> serviceEndpointInterface,
WebServiceFeature... features)
The
getPort method returns a proxy. |
<T> T |
Service.getPort(EndpointReference endpointReference,
Class<T> serviceEndpointInterface,
WebServiceFeature... features)
The
getPort method returns a proxy. |
<T> T |
Service.getPort(QName portName,
Class<T> serviceEndpointInterface,
WebServiceFeature... features)
The
getPort method returns a proxy. |
static Endpoint |
Endpoint.publish(String address,
Object implementor,
WebServiceFeature... features)
Creates and publishes an endpoint for the specified implementor
object at the given address.
|
Constructor and Description |
---|
Service(URL wsdlDocumentLocation,
QName serviceName,
WebServiceFeature... features) |
Modifier and Type | Class and Description |
---|---|
class |
AddressingFeature
AddressingFeature represents the use of WS-Addressing with either
the SOAP 1.1/HTTP or SOAP 1.2/HTTP binding.
|
class |
MTOMFeature
This feature represents the use of MTOM with a
web service.
|
Modifier and Type | Method and Description |
---|---|
Endpoint |
Provider.createAndPublishEndpoint(String address,
Object implementor,
WebServiceFeature... features)
Creates and publishes an endpoint object with the specified
address, implementation object and web service features.
|
abstract <T> Dispatch<T> |
ServiceDelegate.createDispatch(EndpointReference endpointReference,
Class<T> type,
Service.Mode mode,
WebServiceFeature... features)
Creates a
Dispatch instance for use with objects of
the user's choosing. |
abstract Dispatch<Object> |
ServiceDelegate.createDispatch(EndpointReference endpointReference,
JAXBContext context,
Service.Mode mode,
WebServiceFeature... features)
Creates a
Dispatch instance for use with JAXB
generated objects. |
abstract <T> Dispatch<T> |
ServiceDelegate.createDispatch(QName portName,
Class<T> type,
Service.Mode mode,
WebServiceFeature... features)
Creates a
Dispatch instance for use with objects of
the user's choosing. |
abstract Dispatch<Object> |
ServiceDelegate.createDispatch(QName portName,
JAXBContext context,
Service.Mode mode,
WebServiceFeature... features)
Creates a
Dispatch instance for use with JAXB
generated objects. |
Endpoint |
Provider.createEndpoint(String bindingId,
Class<?> implementorClass,
Invoker invoker,
WebServiceFeature... features)
Creates an endpoint object with the provided binding, implementation
class, invoker and web service features.
|
Endpoint |
Provider.createEndpoint(String bindingId,
Object implementor,
WebServiceFeature... features)
Creates an endpoint object with the provided binding, implementation
object and web service features.
|
ServiceDelegate |
Provider.createServiceDelegate(URL wsdlDocumentLocation,
QName serviceName,
Class<? extends Service> serviceClass,
WebServiceFeature... features)
Creates a service delegate object.
|
abstract <T> T |
ServiceDelegate.getPort(Class<T> serviceEndpointInterface,
WebServiceFeature... features)
The
getPort method returns a proxy. |
abstract <T> T |
ServiceDelegate.getPort(EndpointReference endpointReference,
Class<T> serviceEndpointInterface,
WebServiceFeature... features)
The
getPort method returns a proxy. |
abstract <T> T |
Provider.getPort(EndpointReference endpointReference,
Class<T> serviceEndpointInterface,
WebServiceFeature... features)
The getPort method returns a proxy.
|
abstract <T> T |
ServiceDelegate.getPort(QName portName,
Class<T> serviceEndpointInterface,
WebServiceFeature... features)
The
getPort method returns a proxy. |
Modifier and Type | Class and Description |
---|---|
class |
StaxDataBindingFeature |
Modifier and Type | Class and Description |
---|---|
class |
AbstractFeature
A Feature is something that is able to customize a Server, Client, or Bus, typically
adding capabilities.
|
class |
FastInfosetFeature
|
class |
LoggingFeature
This class is used to control message-on-the-wire logging.
|
class |
StaxTransformFeature
|
class |
WrappedFeature
A Feature is something that is able to customize a Server, Client, or Bus, typically
adding capabilities.
|
Modifier and Type | Class and Description |
---|---|
class |
XSLTFeature
This class defines a feature is used to transform message using XSLT script.
|
Modifier and Type | Class and Description |
---|---|
class |
SchemaValidationFeature
A feature to configure schema validation at the operation level, as an alternative to
using the @SchemaValidation annotation.
|
Modifier and Type | Class and Description |
---|---|
class |
JAASAuthenticationFeature
Feature to do JAAS authentication with defaults for karaf integration
|
Modifier and Type | Class and Description |
---|---|
class |
GZIPFeature
This class is used to control GZIP compression of messages.
|
Modifier and Type | Class and Description |
---|---|
class |
BeanValidationFeature |
class |
ClientBeanValidationFeature |
Modifier and Type | Class and Description |
---|---|
class |
WSAddressingFeature |
Modifier and Type | Class and Description |
---|---|
class |
JTAOverWSATFeature
Web service feature is used to enable or disable JTA context propagation over WS-AT.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractClientFeature
Abstract JBoss client JAXWS feature
|
class |
ClientConfigFeature
A JBoss client JAXWS feature that setup a JBossWS predefined client config
|
Modifier and Type | Method and Description |
---|---|
CompletionCoordinatorPortType |
CompletionCoordinatorService.getCompletionCoordinatorPortType(WebServiceFeature... features) |
CompletionCoordinatorRPCPortType |
CompletionCoordinatorRPCService.getCompletionCoordinatorRPCPortType(WebServiceFeature... features) |
CompletionInitiatorPortType |
CompletionInitiatorService.getCompletionInitiatorPortType(WebServiceFeature... features) |
CoordinatorPortType |
CoordinatorService.getCoordinatorPortType(WebServiceFeature... features) |
ParticipantPortType |
ParticipantService.getParticipantPortType(WebServiceFeature... features) |
Modifier and Type | Method and Description |
---|---|
ActivationPortType |
ActivationService.getActivationPortType(WebServiceFeature... features) |
RegistrationPortType |
RegistrationService.getRegistrationPortType(WebServiceFeature... features) |
Copyright © 2017 JBoss by Red Hat. All rights reserved.