📄 componentdescriptor.java
字号:
package javax.slee.management;import javax.slee.ComponentID;/** * This interface is the common base interface for the interfaces * that define the attributes of a component descriptor. * The <code>ComponentDescriptor</code> interface is the common base interface * for all other component descriptor interfaces. All deployable components * installed in the SLEE have a descriptor containing deployment-related * information, specified as a derivitive interface of <code>ComponentDescriptor</code>. */public interface ComponentDescriptor { /** * Get the identifier of the deployable unit from which this component was installed. * @return the identifier of the deployable unit from which this component was installed. */ public DeployableUnitID getDeployableUnit(); /** * Get the name of the source object from which this component was installed. * For services, this is the name of the deployment descriptor XML file * specified in the respective <tt><service-xml></tt> element of the * enclosing deployable unit's deployment descriptor. For components installed * from a component jar file, the source is the name of the component jar file * as specified in the respective <tt><jar></tt> element of the enclosing * deployable unit's deployment descriptor. * @return the name of the source object from where this component was installed. */ public String getSource(); /** * Get the component identifier for this descriptor. * @return the component identifier for this descriptor. */ public ComponentID getID(); /** * Get the name of the component. * @return the name of the component. */ public String getName(); /** * Get the vendor of the component. * @return the vendor of the component. */ public String getVendor(); /** * Get the version of the component. * @return the version of the component. */ public String getVersion();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -