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 Details

    • 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 Details

    • 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.