javax.jbi.component.InstallationContext Maven / Gradle / Ivy
Show all versions of jbi-api Show documentation
/*
* BEGIN_HEADER - DO NOT EDIT
*
* The contents of this file are subject to the terms
* of the Common Development and Distribution License
* (the "License"). You may not use this file except
* in compliance with the License.
*
* You can obtain a copy of the license at
* https://open-esb.dev.java.net/public/CDDLv1.0.html.
* See the License for the specific language governing
* permissions and limitations under the License.
*
* When distributing Covered Code, include this CDDL
* HEADER in each file and include the License file at
* https://open-esb.dev.java.net/public/CDDLv1.0.html.
* If applicable add the following below this CDDL HEADER,
* with the fields enclosed by brackets "[]" replaced with
* your own identifying information: Portions Copyright
* [year] [name of copyright owner]
*/
/*
* @(#)InstallationContext.java
* Copyright 2004-2007 Sun Microsystems, Inc. All Rights Reserved.
*
* END_HEADER - DO NOT EDIT
*/
package javax.jbi.component;
import org.w3c.dom.DocumentFragment;
/**
* This context contains information necessary for a JBI component to
* perform its installation/uninstallation processing. This is provided to
* the init() method of the component {@link Bootstrap} interface.
*
* @author JSR208 Expert Group
*/
public interface InstallationContext
{
/**
* Get the name of the class that implements the {@link Component}
* interface for this component. This must be the component
* class name given in the component's installation descriptor.
*
* @return the {@link Component} implementation class name, which must be
* non-null and non-empty.
*/
String getComponentClassName();
/**
* Get a list of elements that comprise the class path for this component.
* Each element represents either a directory (containing class files) or a
* library file. All elements are reachable from the install root. These
* elements represent class path items that the component's execution-time
* component class loader uses, in search order. All path elements must
* use the file separator character appropriate to the schemaorg_apache_xmlbeans.system (i.e.,
* File.separator
).
*
* @return a list of String objects, each of which contains a class path
* elements. The list must contain at least one class path element.
*/
java.util.List getClassPathElements();
/**
* Get the unique name assigned to this component. This name must be
* assigned from the component's installation descriptor identification
* section.
*
* @return the unique component name, which must be non-null and non-empty.
*/
String getComponentName();
/**
* Get the JBI context for this component. The following methods are
* valid to use on the context:
*
* - {@link ComponentContext#getLogger(String,String)}
* - {@link ComponentContext#getMBeanNames()}
* - {@link ComponentContext#getMBeanServer()}
* - {@link ComponentContext#getNamingContext()}
* - {@link ComponentContext#getTransactionManager()}
*
* All other methods on the returned context must throw a
* IllegalStateException
exception if invoked.
*
* @return the JBI context for this component, which must be non-null.
*/
ComponentContext getContext();
/**
* Get the installation root directory full path name for this component.
* This path name must be formatted for the platform the JBI environment
* is running on.
*
* @return the installation root directory name, which must be non-null and
* non-empty.
*/
String getInstallRoot();
/**
* Return a DOM document fragment representing the installation descriptor
* (jbi.xml) extension data for the component, if any.
*
* The Installation Descriptor Extension data are located at the end of the
* <component> element of the installation descriptor.
*
* @return a DOM document fragment containing the installation descriptor
* (jbi.xml) extension data, or null
if none is present in the
* descriptor.
*/
DocumentFragment getInstallationDescriptorExtension();
/**
* Returns true
if this context was created in order to install
* a component into the JBI environment. Returns false
if this
* context was created to uninstall a previously installed component.
*
* This method is provided to allow {@link Bootstrap} implementations to
* tailor their behaviour according to use case. For example, the
* {@link Bootstrap#init(InstallationContext)} method implementation may
* create different types of extension MBeans, depending on the use case
* specified by this method.
*
* @return true
if this context was created in order to install
* a component into the JBI environment; otherwise the context
* was created to uninstall an existing component.
*/
boolean isInstall();
/**
* Set the list of elements that comprise the class path for this component.
* Each element represents either a directory (containing class files) or a
* library file. Elements are reached from the install root. These
* elements represent class path items that the component's execution-time
* component class loader uses, in search order. All file paths are
* relative to the install root of the component.
*
* This method allows the component's bootstrap to alter the execution-time
* class path specified by the component's installation descriptor. The
* component configuration determined during installation can affect the
* class path needed by the component at execution-time. All path elements
* must use the file separator character appropriate to the schemaorg_apache_xmlbeans.system (i.e.,
* File.separator
.
*
* @param classPathElements a list of String objects, each of which contains
* a class path elements; the list must be non-null and contain at
* least one class path element.
* @exception IllegalArgumentException if the class path elements is null,
* empty, or if an individual element is ill-formed.
*/
void setClassPathElements(java.util.List classPathElements);
}