| com.sun.jbi.component.ComponentContext
All known Subclasses: com.sun.jbi.framework.ComponentContext, com.sun.jbi.internal.security.DummyBindingContext, com.sun.jbi.internal.security.SampleBindingContext,
ComponentContext | public interface ComponentContext extends javax.jbi.component.ComponentContext(Code) | | This context provides access to data needed by all components running in the
JBI framework. It is created when the component is initialized and destroyed
when the component is shut down.
author: Sun Microsystems, Inc. |
getKeyStoreUtil | KeyStoreUtil getKeyStoreUtil()(Code) | | Returns a KeyStoreUtil object that allows components to create,
read, update, and delete keys. The KeyStoreUtil also allows the
encryption and decryption of text using the keys stored in the
private KeyStore.
An instance of a KeyStoreUtil or null if the KeyStoreUtilservice is not available |
getManagementMessageFactory | ManagementMessageFactory getManagementMessageFactory()(Code) | | Get the management message factory which enables JBI components
to construct status and exception messages.
the management message factory. |
getStringTranslator | StringTranslator getStringTranslator(String packageName)(Code) | | Get a StringTranslator for a specific package name.
Parameters: packageName - the name of the package that contains the resourcebundle for this translator. the StringTranslator instance for the specified package. |
getStringTranslatorFor | StringTranslator getStringTranslatorFor(Object object)(Code) | | Get a StringTranslator for a specific object.
Parameters: object - an object that is in the same package that contains theresource bundle for this translator. the StringTranslator instance for the object. |
getWsdlFactory | WsdlFactory getWsdlFactory() throws WsdlException(Code) | | Get a copy of the WSDL factory. This needs to be done before
any reading, writing, or manipulation of WSDL documents can
be performed using the WSDL API.
An instance of the WSDL factory. exception: WsdlException - If the factory cannot be instantiated. |
registerXAResource | void registerXAResource(XAResource resource) throws JBIException(Code) | | Used by a component to register an internal XAResource with the JBI runtime.
Parameters: resource - to be registered exception: JBIException - if something is wrong with the XAResource. |
|
|