Apache CXF API

Uses of Interface
org.apache.cxf.endpoint.Endpoint

Packages that use Endpoint
org.apache.cxf.binding Interfaces for protocol bindings and their factories. 
org.apache.cxf.clustering   
org.apache.cxf.endpoint Client and Server related classes. 
org.apache.cxf.frontend   
org.apache.cxf.interceptor Core interceptor interfaces which form the basis for message processing chains in CXF. 
org.apache.cxf.jaxrs   
org.apache.cxf.jaxrs.client   
org.apache.cxf.message   
org.apache.cxf.service This package and its sub packages contain classes relating to services and the CXF service model 
org.apache.cxf.transport Transport related classes. 
 

Uses of Endpoint in org.apache.cxf.binding
 

Methods in org.apache.cxf.binding with parameters of type Endpoint
 void BindingFactory.addListener(Destination d, Endpoint e)
          Set the destination's message observer which is created by using the endpoint to listen the incoming message
 void AbstractBindingFactory.addListener(Destination d, Endpoint e)
           
 

Uses of Endpoint in org.apache.cxf.clustering
 

Methods in org.apache.cxf.clustering that return Endpoint
 Endpoint FailoverStrategy.selectAlternateEndpoint(java.util.List<Endpoint> alternates)
          Select one of the alternate endpoints for a retried invocation.
 Endpoint AbstractStaticFailoverStrategy.selectAlternateEndpoint(java.util.List<Endpoint> alternates)
          Select one of the alternate endpoints for a retried invocation.
 

Methods in org.apache.cxf.clustering that return types with arguments of type Endpoint
 java.util.List<Endpoint> FailoverStrategy.getAlternateEndpoints(Exchange exchange)
          Get the alternate endpoints for this invocation.
 java.util.List<Endpoint> RetryStrategy.getAlternateEndpoints(Exchange exchange)
           
 java.util.List<Endpoint> AbstractStaticFailoverStrategy.getAlternateEndpoints(Exchange exchange)
          Get the alternate endpoints for this invocation.
protected  java.util.List<Endpoint> AbstractStaticFailoverStrategy.getEndpoints(Exchange exchange, boolean acceptCandidatesWithSameAddress)
          Get the endpoints for this invocation.
 

Method parameters in org.apache.cxf.clustering with type arguments of type Endpoint
 Endpoint FailoverStrategy.selectAlternateEndpoint(java.util.List<Endpoint> alternates)
          Select one of the alternate endpoints for a retried invocation.
 Endpoint AbstractStaticFailoverStrategy.selectAlternateEndpoint(java.util.List<Endpoint> alternates)
          Select one of the alternate endpoints for a retried invocation.
 

Uses of Endpoint in org.apache.cxf.endpoint
 

Classes in org.apache.cxf.endpoint that implement Endpoint
 class EndpointImpl
           
 

Fields in org.apache.cxf.endpoint declared as Endpoint
protected  Endpoint AbstractConduitSelector.endpoint
           
 

Methods in org.apache.cxf.endpoint that return Endpoint
protected abstract  Endpoint AbstractEndpointFactory.createEndpoint()
           
 Endpoint ServerImpl.getEndpoint()
           
 Endpoint Server.getEndpoint()
           
 Endpoint NullConduitSelector.getEndpoint()
           
 Endpoint PreexistingConduitSelector.getEndpoint()
           
 Endpoint Client.getEndpoint()
           
 Endpoint ConduitSelector.getEndpoint()
           
 Endpoint ClientImpl.getEndpoint()
           
 Endpoint AbstractConduitSelector.getEndpoint()
           
 

Methods in org.apache.cxf.endpoint with parameters of type Endpoint
protected  boolean AbstractEndpointFactory.checkPrivateEndpoint(Endpoint ep)
          Checks if a given endpoint has been marked as private.
protected  boolean AbstractEndpointFactory.initializeAnnotationInterceptors(AnnotationInterceptors provider, Endpoint ep)
           
protected  void AbstractEndpointFactory.initializeAnnotationInterceptors(Endpoint ep, java.lang.Class<?> cls)
          Add annotationed Interceptors and Features to the Endpoint
 void NullConduitSelector.setEndpoint(Endpoint ep)
           
 void PreexistingConduitSelector.setEndpoint(Endpoint ep)
           
 void ConduitSelector.setEndpoint(Endpoint endpoint)
           
protected  void ClientImpl.setEndpoint(Endpoint e)
           
 void AbstractConduitSelector.setEndpoint(Endpoint ep)
           
protected  void ClientImpl.setExchangeProperties(Exchange exchange, Endpoint endpoint, BindingOperationInfo boi)
           
protected  PhaseInterceptorChain ClientImpl.setupInterceptorChain(Endpoint endpoint)
           
 

Constructors in org.apache.cxf.endpoint with parameters of type Endpoint
ClientImpl(Bus b, Endpoint e)
           
ClientImpl(Bus b, Endpoint e, Conduit c)
           
ClientImpl(Bus b, Endpoint e, ConduitSelector sc)
           
ManagedEndpoint(Bus b, Endpoint ep, Server s)
           
PreexistingConduitSelector(Conduit c, Endpoint e)
          Constructor.
ServerImpl(Bus bus, Endpoint endpoint, DestinationFactory destinationFactory, BindingFactory bindingFactory)
           
ServerImpl(Bus bus, Endpoint endpoint, DestinationFactory destinationFactory, MessageObserver observer)
           
 

Uses of Endpoint in org.apache.cxf.frontend
 

Methods in org.apache.cxf.frontend with parameters of type Endpoint
 BindingOperationInfo MethodDispatcher.getBindingOperation(java.lang.reflect.Method m, Endpoint endpoint)
           
 

Uses of Endpoint in org.apache.cxf.interceptor
 

Methods in org.apache.cxf.interceptor that return Endpoint
protected abstract  Endpoint AbstractEndpointSelectionInterceptor.selectEndpoint(Message message, java.util.Set<Endpoint> eps)
          Select an Endpoint which will be used for the rest of the invocation.
 

Method parameters in org.apache.cxf.interceptor with type arguments of type Endpoint
protected abstract  Endpoint AbstractEndpointSelectionInterceptor.selectEndpoint(Message message, java.util.Set<Endpoint> eps)
          Select an Endpoint which will be used for the rest of the invocation.
 

Uses of Endpoint in org.apache.cxf.jaxrs
 

Methods in org.apache.cxf.jaxrs that return Endpoint
protected  Endpoint AbstractJAXRSFactoryBean.createEndpoint()
           
 

Methods in org.apache.cxf.jaxrs that return types with arguments of type Endpoint
 java.util.Map<javax.xml.namespace.QName,Endpoint> JAXRSServiceImpl.getEndpoints()
           
 

Methods in org.apache.cxf.jaxrs with parameters of type Endpoint
protected  ProviderFactory AbstractJAXRSFactoryBean.setupFactory(Endpoint ep)
           
 

Method parameters in org.apache.cxf.jaxrs with type arguments of type Endpoint
 void JAXRSServiceImpl.setEndpoints(java.util.Map<javax.xml.namespace.QName,Endpoint> endpoints)
           
 

Uses of Endpoint in org.apache.cxf.jaxrs.client
 

Methods in org.apache.cxf.jaxrs.client with parameters of type Endpoint
protected  ConduitSelector JAXRSClientFactoryBean.getConduitSelector(Endpoint ep)
           
protected  void JAXRSClientFactoryBean.initClient(AbstractClient client, Endpoint ep, boolean addHeaders)
           
 

Uses of Endpoint in org.apache.cxf.message
 

Methods in org.apache.cxf.message that return Endpoint
 Endpoint Exchange.getEndpoint()
           
 Endpoint ExchangeImpl.getEndpoint()
           
 

Uses of Endpoint in org.apache.cxf.service
 

Methods in org.apache.cxf.service that return types with arguments of type Endpoint
 java.util.Map<javax.xml.namespace.QName,Endpoint> Service.getEndpoints()
           
 java.util.Map<javax.xml.namespace.QName,Endpoint> ServiceImpl.getEndpoints()
           
 

Method parameters in org.apache.cxf.service with type arguments of type Endpoint
 void ServiceImpl.setEndpoints(java.util.Map<javax.xml.namespace.QName,Endpoint> endpoints)
           
 

Uses of Endpoint in org.apache.cxf.transport
 

Fields in org.apache.cxf.transport declared as Endpoint
protected  Endpoint ChainInitiationObserver.endpoint
           
 

Methods in org.apache.cxf.transport that return Endpoint
 Endpoint ChainInitiationObserver.getEndpoint()
           
 

Methods in org.apache.cxf.transport that return types with arguments of type Endpoint
 java.util.Set<Endpoint> MultipleEndpointObserver.getEndpoints()
           
 

Constructors in org.apache.cxf.transport with parameters of type Endpoint
ChainInitiationObserver(Endpoint endpoint, Bus bus)
           
 


Apache CXF API

Apache CXF