| java.lang.Object com.sun.jbi.binding.jms.JMSBindingLifeCycle
getExtensionMBeanName | public javax.management.ObjectName getExtensionMBeanName()(Code) | | Get the ObjectName for any MBean that is provided for managing this
binding. In this case, there is none, so a null is returned.
ObjectName is always null. |
init | public void init(javax.jbi.component.ComponentContext jbiContext, Logger logger) throws javax.jbi.JBIException(Code) | | Initialize the JMS BC. This performs initialization required by the JMS
BC but does not make it ready to process messages. This method is
called immediately after installation of the JMS BC. It is also called
when the JBI framework is starting up, and any time the BC is being
restarted after previously being shut down through a call to
shutdown().
Parameters: jbiContext - the JBI environment context Parameters: logger - logger object. throws: javax.jbi.JBIException - if the BC is unable to initialize. |
setResolver | public void setResolver(JMSBindingResolver resolver)(Code) | | Resolver object.
Parameters: resolver - resolver implementation. |
setSUManager | public void setSUManager(JMSBindingSUManager manager)(Code) | | Sets the su manager.
Parameters: manager - su manager implementation. |
shutDown | public void shutDown() throws javax.jbi.JBIException(Code) | | Shutdown the BC. This performs cleanup before the BC is terminated. Once
this has been called, init() must be called before the BC can be
started again with a call to start().
throws: javax.jbi.JBIException - if the BC is unable to shut down. |
start | public void start() throws javax.jbi.JBIException(Code) | | Start the JMS BC. This makes the JSM BC ready to process messages. This
method is called after init() completes when the JBI framework is
starting up, and when the BC is being restarted after a previous call
to shutdown(). If stop() was called previously but shutdown() was not,
start() can be called without a call to init().
throws: javax.jbi.JBIException - if the BC is unable to start. throws: JBIException - |
stop | public void stop() throws javax.jbi.JBIException(Code) | | Stop the BC. This makes the BC stop accepting messages for processing.
After a call to this method, start() can be called again without first
calling init().
throws: javax.jbi.JBIException - if the BC is unable to stop. |
|
|