⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 profileaddedevent.java

📁 jainslee1.0 源代码
💻 JAVA
字号:
package javax.slee.profile;import javax.slee.Address;/** * This interface is implemented by profile added events generated by * <code>ProfileProvisioningMBean</code> objects when a profile is added to a * profile table. * <p> * The event type name of profile added events is * "<code>javax.slee.profile.ProfileAddedEvent</code>". */public interface ProfileAddedEvent {    /**     * Get the profile identifer for the profile that was added.     * @return the profile identifier for the profile that was added.     */    public ProfileID getProfile();    /**     * Get the address of the profile that was added.  The address plan of this     * address is {@link javax.slee.AddressPlan#SLEE_PROFILE}.     * @return the address of the profile that was added.     */    public Address getProfileAddress();    /**     * Get the committed state of the profile that was added.  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 resides, 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 that was added.     */    public Object getAddedProfile();}

⌨️ 快捷键说明

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