deployableunitdescriptor.java

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

JAVA
32 行
字号
package javax.slee.management;import java.util.Date;import javax.slee.ComponentID;/** * This interface provides access to deployment-specific attributes that * describe an installed deployable unit. */public interface DeployableUnitDescriptor {    /**     * Get the URL that the deployable unit was installed from.     * @return the URL that the deployable unit was installed from.     */    public String getURL();    /**     * Get the date that the deployable unit was installed.     * @return the date that the deployable unit was installed.     */    public Date getDeploymentDate();    /**     * Get the component identifiers of the components installed with this     * deployable unit.     * @return the component identifiers of the components installed with     *        this deployable unit.     */    public ComponentID[] getComponents();}

⌨️ 快捷键说明

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