profileremovedevent.java

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

JAVA
40 行
字号
package javax.slee.profile;import javax.slee.Address;/** * This interface is implemented by profile removed events generated by * <code>ProfileProvisioningMBean</code> objects when a profile is removed from a * profile table. * <p> * The event type name of profile removed events is * "<code>javax.slee.profile.ProfileRemovedEvent</code>". */public interface ProfileRemovedEvent {    /**     * Get the profile identifer for the profile that was removed.     * @return the profile identifier for the profile that was removed.     */    public ProfileID getProfile();    /**     * Get the address of the profile that was removed.  The address plan of this     * address is {@link javax.slee.AddressPlan#SLEE_PROFILE}.     * @return the address of the profile that was removed.     */    public Address getProfileAddress();    /**     * Get the committed state of the profile just before it was removed.  The actual type     * of the return value is the Profile CMP Interface defined by the profile specification     * of the profile table in which the profile resided, and may be safely typecast     * using the normal Java typecast mechanism.     * <p>     * The object returned from this method is only valid within the event-handler transaction     * in which the event was delivered to an SBB entity.     * @return the committed state of the profile just before it was removed.     */    public Object getRemovedProfile();}

⌨️ 快捷键说明

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