com.ibm.portal.outbound.config.service
Interface OutboundConnectionModelControllerProvider


public interface OutboundConnectionModelControllerProvider

The provider for the connection model controller.
Code example:

javax.naming.Context ctx = new javax.naming.InitialContext();
OutboundConnectionModelControllerHome home = (OutboundConnectionModelControllerHome) ctx.lookup("portal:service/model/OutboundConnectionModelController");
OutboundConnectionModelController controller =
home.getOutboundConnectionModelControllerProvider().getOutboundConnectionModelController(model);

Since:
8.5.0
See Also:
OutboundConnectionModelController, OutboundConnectionModelControllerHome

Method Summary
 OutboundConnectionModelController getOutboundConnectionModelController(OutboundConnectionModel theModel)
          Return OutboundConnectionModelController object
 

Method Detail

getOutboundConnectionModelController

OutboundConnectionModelController getOutboundConnectionModelController(OutboundConnectionModel theModel)
Return OutboundConnectionModelController object

Parameters:
model - the connection model for which the controller object is requested. This model must be a valid outbound connection model.
Returns:
OutboundConnectionModelController object which allows write access to the outbound connection model.