Class EndpointCreationAttributes
- java.lang.Object
-
- com.sun.xml.ws.api.config.management.EndpointCreationAttributes
-
public class EndpointCreationAttributes extends Object
Store the parameters that were passed into the original WSEndpoint instance upon creation. This allows us to instantiate a new instance with the same parameters.- Author:
- Fabian Ritzmann
-
-
Constructor Summary
Constructors Constructor Description EndpointCreationAttributes(boolean processHandlerAnnotation, Invoker invoker, EntityResolver resolver, boolean isTransportSynchronous)Instantiate this data access object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description EntityResolvergetEntityResolver()Return the original EntityResolver instance.InvokergetInvoker()Return the original Invoker instance.booleanisProcessHandlerAnnotation()Return the original processHandlerAnnotation setting.booleanisTransportSynchronous()Return the original isTransportSynchronous setting.
-
-
-
Constructor Detail
-
EndpointCreationAttributes
public EndpointCreationAttributes(boolean processHandlerAnnotation, Invoker invoker, EntityResolver resolver, boolean isTransportSynchronous)Instantiate this data access object.- Parameters:
processHandlerAnnotation- The original processHandlerAnnotation setting.invoker- The original Invoker instance.resolver- The original EntityResolver instance.isTransportSynchronous- The original isTransportSynchronous setting.
-
-
Method Detail
-
isProcessHandlerAnnotation
public boolean isProcessHandlerAnnotation()
Return the original processHandlerAnnotation setting.- Returns:
- The original processHandlerAnnotation setting.
-
getInvoker
public Invoker getInvoker()
Return the original Invoker instance.- Returns:
- The original Invoker instance.
-
getEntityResolver
public EntityResolver getEntityResolver()
Return the original EntityResolver instance.- Returns:
- The original EntityResolver instance.
-
isTransportSynchronous
public boolean isTransportSynchronous()
Return the original isTransportSynchronous setting.- Returns:
- The original isTransportSynchronous setting.
-
-