Package org.apache.cxf.jca.inbound
Class InboundEndpoint
- java.lang.Object
-
- org.apache.cxf.jca.inbound.InboundEndpoint
-
public class InboundEndpoint extends Object
An inbound endpoint is a CXF service endpoint facade exposed by the JCA connector. Its role is to accept service requests from ordinary CXF clients and forward them to an invoker (running in the context of the activating message driven bean). The invoker either contains the service implementation or dispatches the call to a Stateless Session Bean. This class holds objects that are needed to accomplish the task and provides a shutdown method to clean up the endpoint.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MDBInvokergetInvoker()ServergetServer()voidsetInvoker(MDBInvoker invoker)voidsetServer(Server server)voidshutdown()Shuts down the endpoint
-
-
-
Method Detail
-
getInvoker
public MDBInvoker getInvoker()
- Returns:
- the invoker
-
getServer
public Server getServer()
- Returns:
- the server
-
setInvoker
public void setInvoker(MDBInvoker invoker)
- Parameters:
invoker- the invoker to set
-
setServer
public void setServer(Server server)
- Parameters:
server- the server to set
-
-