sbbdescriptor.java

来自「jainslee1.0 源代码」· Java 代码 · 共 54 行

JAVA
54 行
字号
package javax.slee.management;import javax.slee.SbbID;import javax.slee.EventTypeID;import javax.slee.profile.ProfileSpecificationID;import javax.slee.resource.ResourceAdaptorTypeID;/** * This interface provides access to deployment-specific attributes that * describe an installed SBB. */public interface SbbDescriptor extends ComponentDescriptor {    /**     * Get the component identifiers of the SBBs used by this SBB.  These SBBs may     * be child SBBs or stored in CMP fields of this SBB.     * @return the component identifiers of the SBBs used by this SBB.     */    public SbbID[] getSbbs();    /**     * Get the component identifiers of the event types used by this SBB.     * @return the component identifiers of the event types used by this SBB.     */    public EventTypeID[] getEventTypes();    /**     * Get the component identifiers of the profile specifications used by this SBB.     * @return the component identifiers of the profile specifications used by this SBB.     */    public ProfileSpecificationID[] getProfileSpecifications();    /**     * Get the component identifier of the profile specification used for Address     * Profiles for this SBB.     * @return the component identifier of the Address Profile profile specification     *        used by this SBB, or <code>null</code> if the SBB does not use Address     *        Profiles.     */    public ProfileSpecificationID getAddressProfileSpecification();    /**     * Get the component identifiers of the resource adaptor types used by this SBB.     * @return the component identifiers of the resource adaptor types used by this SBB.     */    public ResourceAdaptorTypeID[] getResourceAdaptorTypes();    /**     * Get the names of the resource adaptor entity links used by this SBB.     * @return the names of the resource adaptor entity links used by this SBB.     */    public String[] getResourceAdaptorEntityLinks();}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?