| java.lang.Object com.sun.jbi.engine.xslt.TransformationEngineLifeCycle
TransformationEngineLifeCycle | public class TransformationEngineLifeCycle implements javax.jbi.component.ComponentLifeCycle,TEResources(Code) | | This class implements ComponentLifeCycle. The JBI framework will start this
engine class automatically when JBI framework starts up.
author: Sun Microsystems, Inc. |
getExtensionMBeanName | public ObjectName getExtensionMBeanName()(Code) | | Get the JMX ObjectName for any additional MBean for this BC. If there is
none, return null.
ObjectName the JMX object name of the additional MBean or nullif there is no additional MBean. |
init | public void init(javax.jbi.component.ComponentContext context) throws javax.jbi.JBIException(Code) | | Initialize the transformation engine. This performs initialization
required by the transformation engine but does not make it ready to
process messages. This method is called immediately after installation
of the Transformation engine. It is also called when the JBI framework
is starting up, and any time the transformation engine is being
restarted after previously being shut down through a call to
shutDown().
Parameters: context - the JBI environment mContext throws: javax.jbi.JBIException - if the transformation engine is unable toinitialize. |
shutDown | public void shutDown() throws javax.jbi.JBIException(Code) | | Shutdown the transformation engine. This performs cleanup before the BPE
is terminated. Once this method has been called, init() must be called
before the transformation engine can be started again with a call to
start().
throws: javax.jbi.JBIException - if the transformation engine is unable toshut down. |
start | public void start() throws javax.jbi.JBIException(Code) | | Start the transformation engine. This makes the BPE ready to process
messages. This method is called after init() completes when the JBI
framework is starting up, and when the transformation engine 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 transformation engine is unable tostart. |
stop | public void stop() throws javax.jbi.JBIException(Code) | | Stop the transformation engine. This makes the BPE 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 transformation engine is unable tostop. |
|
|