com.sun.xml.ws.api.config.management
Class EndpointCreationAttributes

java.lang.Object
  extended by 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.


Constructor Summary
EndpointCreationAttributes(boolean processHandlerAnnotation, Invoker invoker, EntityResolver resolver, boolean isTransportSynchronous)
          Instantiate this data access object.
 
Method Summary
 EntityResolver getEntityResolver()
          Return the original EntityResolver instance.
 Invoker getInvoker()
          Return the original Invoker instance.
 boolean isProcessHandlerAnnotation()
          Return the original processHandlerAnnotation setting.
 boolean isTransportSynchronous()
          Return the original isTransportSynchronous setting.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

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.


Copyright (c) 1997-2012 Oracle and/or its affiliates. All rights reserved.