亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? profileprovisioningmbean.java

?? jainslee1.0 源代碼
?? JAVA
字號(hào):
package javax.slee.management;import java.util.Collection;import javax.slee.InvalidArgumentException;import javax.slee.profile.ProfileID;import javax.slee.profile.ProfileSpecificationID;import javax.slee.profile.AttributeNotIndexedException;import javax.slee.profile.AttributeTypeMismatchException;import javax.slee.profile.ProfileAlreadyExistsException;import javax.slee.profile.ProfileTableAlreadyExistsException;import javax.slee.profile.UnrecognizedProfileTableNameException;import javax.slee.profile.UnrecognizedProfileNameException;import javax.slee.profile.UnrecognizedAttributeException;import javax.slee.profile.UnrecognizedProfileSpecificationException;import javax.management.ObjectName;/** * The <code>ProfileProvisiningMBean</code> interface defines management operations * for creating, removing, and interacting with profiles and profile tables. * <p> * The Object Name of a <code>ProfileProvisioningMBean</code> object can be obtained by * a management client via the {@link SleeManagementMBean#getProfileProvisioningMBean()} * method. */public interface ProfileProvisioningMBean {    /**     * Create a new profile table from a profile specification.     * @param id the component identifier of the profile specification that the     *        profile table should be created from.     * @param newProfileTableName the name of the profile table to create.  The name     *        cannot include the '<tt>/</tt>' character.     * @throws NullPointerException if <code>newProfileTableName</code> is <code>null</code>.     * @throws UnrecognizedProfileSpecificationException if <code>id</code> is not a     *        recognizable <code>ProfileSpecificationID</code> for the SLEE or it does     *        not correspond with a profile specification installed in the SLEE.     * @throws InvalidArgumentException if <code>newProfileTableName</code> is zero-length     *        or contains a '<tt>/</tt>' character.     * @throws ProfileTableAlreadyExistsException if a profile table with the same     *        name already exists.     * @throws ManagementException if the profile table could not be created due to     *        a system-level failure.     */    public void createProfileTable(ProfileSpecificationID id, String newProfileTableName)        throws NullPointerException, UnrecognizedProfileSpecificationException,               InvalidArgumentException, ProfileTableAlreadyExistsException,               ManagementException;    /**     * Remove a profile table.     * @param profileTableName the name of the profile table to remove.     * @throws NullPointerException if <code>profileTableName<code> is <code>null</code>.     * @throws UnrecognizedProfileTableNameException if a profile table with the specified     *        name does not exist.     * @throws ManagementException if the profile table could not be removed due to     *        a system-level failure.     */    public void removeProfileTable(String profileTableName)        throws NullPointerException, UnrecognizedProfileTableNameException, ManagementException;    /**     * Get the component identifier of the profile specification that a profile table     * was created with.     * @param profileTableName the name of the profile table.     * @return the component identifier of the profile specification that the profile     *        table was created with.     * @throws NullPointerException if <code>profileTableName<code> is <code>null</code>.     * @throws UnrecognizedProfileTableNameException if a profile table with the specified     *        name does not exist.     * @throws ManagementException if the component identifier could not be obtained     *        due to a system-level failure.     */    public ProfileSpecificationID getProfileSpecification(String profileTableName)        throws NullPointerException, UnrecognizedProfileTableNameException, ManagementException;    /**     * Rename a profile table.     * @param oldProfileTableName the name of the profile table to rename.     * @param newProfileTableName the new name for the profile table.     * @throws NullPointerException if either argument is <code>null</code>.     * @throws UnrecognizedProfileTableNameException if a profile table with the name     *        <code>oldProfileTableName</code> does not exist.     * @throws InvalidArgumentException if <code>newProfileTableName</code> is zero-length     *        or contains a '<tt>/</tt>' character.     * @throws ProfileTableAlreadyExistsException if a profile table with the same     *        name as <code>newProfileTableName</code> already exists.     * @throws ManagementException if the profile table could not be renamed due to     *        a system-level failure.     */    public void renameProfileTable(String oldProfileTableName, String newProfileTableName)        throws NullPointerException, UnrecognizedProfileTableNameException,               InvalidArgumentException, ProfileTableAlreadyExistsException,               ManagementException;    /**     * Get the JMX Object Name of the default profile for a profile table.  Every profile     * table has one default profile.  New profiles created in a profile table obtain     * their intial values from the default profile.     * @param profileTableName the name of the profile table.     * @return the Object Name of the default profile for the specified profile table.     * @throws NullPointerException if <code>profileTableName</code> is <code>null</code>.     * @throws UnrecognizedProfileTableNameException if a profile table with the specified     *        name does not exist.     * @throws ManagementException if the Object Name could not be obtained due to a     *        system-level failure.     */    public ObjectName getDefaultProfile(String profileTableName)        throws NullPointerException, UnrecognizedProfileTableNameException, ManagementException;    /**     * Create a new profile with the specified name in the specified profile table.  The     * <code>ObjectName</code> returned by this method provides the management client with     * the name of a Profile MBean for the created profile.  This Profile MBean is in the     * read-write state allowing the management client a chance to configure the initial     * values for the profile attributes before it is added to the profile table.  The new     * profile is not visible in the profile table until the Profile MBean state is committed.     * @param profileTableName the name of the profile table to create the profile in.     * @param newProfileName the name of the new profile.  The name must be unique     *        within the scope of the profile table.     * @return the Object Name of the new profile.     * @throws NullPointerException if either argument is <code>null</code>.     * @throws UnrecognizedProfileTableNameException if a profile table with the specified     *        name does not exist.     * @throws InvalidArgumentException if <code>newProfileName</code> is zero-length.     * @throws ProfileAlreadyExistsException if a profile with the same name already     *        exists in the profile table.     * @throws ManagementException if the profile could not be created due to a     *        system-level failure.     */    public ObjectName createProfile(String profileTableName, String newProfileName)        throws NullPointerException, UnrecognizedProfileTableNameException,               InvalidArgumentException, ProfileAlreadyExistsException,               ManagementException;    /**     * Remove a profile from a profile table.     * @param profileTableName the name of the profile table to remove the profile from.     * @param profileName the name of the profile to remove.     * @throws NullPointerException if either argument is <code>null</code>.     * @throws UnrecognizedProfileTableNameException if a profile table with the specified     *        name does not exist.     * @throws UnrecognizedProfileNameException if a profile with the specified name     *        does not exist in the profile table.     * @throws ManagementException if the profile could not be removed due to a     *        system-level failure.     */    public void removeProfile(String profileTableName, String profileName)        throws NullPointerException, UnrecognizedProfileTableNameException,               UnrecognizedProfileNameException, ManagementException;    /**     * Get the JMX Object Name of a profile.     * @param profileTableName the name of the profile table to obtain the profile from.     * @param profileName the name of the profile.     * @return the Object Name of the profile.     * @throws NullPointerException if either argument is <code>null</code>.     * @throws UnrecognizedProfileTableNameException if a profile table with the specified     *        name does not exist.     * @throws UnrecognizedProfileNameException if a profile with the specified name     *        does not exist in the profile table.     * @throws ManagementException if the profile could not be obtained due to a     *        system-level failure.     */    public ObjectName getProfile(String profileTableName, String profileName)        throws NullPointerException, UnrecognizedProfileTableNameException,               UnrecognizedProfileNameException, ManagementException;    /**     * Get a collection of <code>java.lang.String</code> objects that identify the names     * of all the profile tables that have been created in the SLEE.     * @return a collection of <code>java.lang.String</code> objects identifying the names     *        of all the profile tables that have been created in the SLEE.     * @throws ManagementException if the MBean object could not be obtained due to a     *        system-level failure.     */    public Collection getProfileTables()        throws ManagementException;    /**     * Get a collection of <code>ProfileID</code> objects that identify all the profiles     * contained in a specified profile table.       * <p>     * <i>Note:</i> A profile identifier for the profile table's default profile will not be     * included in the collection returned by this method as the default profile has no such     * identifier.     * @param profileTableName the name of the profile table.     * @return a collection of {@link ProfileID} objects identifying the profiles     *        contained in the specified profile table.     * @throws NullPointerException if <code>profileTableName</code> is <code>null</code>.     * @throws UnrecognizedProfileTableNameException if a profile table with the specified     *        name does not exist.     * @throws ManagementException if the MBean object could not be obtained due to a     *        system-level failure.     */    public Collection getProfiles(String profileTableName)        throws NullPointerException, UnrecognizedProfileTableNameException, ManagementException;    /**     * Get a collection of <code>ProfileID</code> objects that identify the profiles contained     * in a specified profile table where a specified profile attribute is set to a specified value.     * <p>     * <i>Note:</i> The profile table's default profile is not considered when determining     * matching profiles as it has no profile identifier that can be included in the collection     * returned by this method.     * @param profileTableName the name of the profile table.     * @param attributeName the name of the profile's attribute to check.     * @param attributeValue the value to compare the attribute with.     * @return a collection of {@link ProfileID} objects identifying the profiles contained     *        in the specified profile table, where the specified attribute of each profile     *        equals the specified value.     * @throws NullPointerException if any argument is <code>null</code>.     * @throws UnrecognizedProfileTableNameException if a profile table with the specified     *        name does not exist.     * @throws UnrecognizedAttributeException if an attribute with the specified name is     *        not defined in the profile specification for the specified profile table.     * @throws AttributeNotIndexedException if the specified attribute is not indexed     *        in the profile specification for the specified profile table.     * @throws AttributeTypeMismatchException if the type of the supplied attribute value does not     *        match the type of the specified indexed attribute.     * @throws ManagementException if the MBean object could not be obtained due to a     *        system-level failure.     */    public Collection getProfilesByIndexedAttribute(String profileTableName, String attributeName, Object attributeValue)        throws NullPointerException, UnrecognizedProfileTableNameException,               UnrecognizedAttributeException, AttributeNotIndexedException,               AttributeTypeMismatchException, ManagementException;}

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
天堂蜜桃91精品| 亚洲欧美日韩综合aⅴ视频| 成人免费看黄yyy456| 亚洲自拍都市欧美小说| 久久网站热最新地址| 在线国产电影不卡| 国产精品综合一区二区| 亚洲第一成人在线| 国产精品国产三级国产普通话99| 日韩一区二区视频在线观看| 91在线免费看| 国产91丝袜在线播放| 免费不卡在线观看| 一区二区三区在线不卡| 久久久久久久久久久久久久久99| 欧美日韩精品欧美日韩精品| 99re这里只有精品6| 激情偷乱视频一区二区三区| 亚洲成人动漫av| 亚洲女女做受ⅹxx高潮| 欧美激情在线一区二区三区| 精品国产乱码久久久久久图片| 欧美日韩一区视频| 91在线丨porny丨国产| 成人免费福利片| 国产在线精品视频| 久久狠狠亚洲综合| 日本不卡一区二区| 亚洲成国产人片在线观看| 国产精品福利一区二区三区| 国产午夜精品一区二区三区视频| 日韩亚洲电影在线| 91精品国产综合久久久久| 91黄色免费观看| 在线这里只有精品| 色94色欧美sute亚洲13| 一道本成人在线| 色噜噜久久综合| 色婷婷av一区二区三区之一色屋| 99精品国产视频| 99久久综合狠狠综合久久| 不卡视频一二三四| 91在线视频免费观看| 日本道免费精品一区二区三区| 99久久er热在这里只有精品66| jlzzjlzz亚洲女人18| 97精品国产露脸对白| 一本色道久久综合亚洲91 | 亚洲日本在线a| 1024亚洲合集| 一区二区三区成人| 亚洲图片欧美一区| 午夜精品成人在线视频| 青青草97国产精品免费观看| 老司机午夜精品99久久| 狠狠色丁香婷婷综合久久片| 国产乱码字幕精品高清av| 国产伦精品一区二区三区视频青涩 | 国产成人在线视频免费播放| 国内精品写真在线观看| 成人免费福利片| 欧美系列亚洲系列| 日韩欧美一区中文| 国产亲近乱来精品视频| 亚洲视频香蕉人妖| 亚洲福利一二三区| 麻豆成人av在线| 国产a久久麻豆| 色一区在线观看| 91精品黄色片免费大全| 国产色一区二区| 1024成人网色www| 天天操天天色综合| 国产一区二区三区蝌蚪| 99re8在线精品视频免费播放| 欧美日韩精品一区二区三区四区| 精品国产一区二区三区忘忧草| 国产视频一区二区在线观看| 亚洲一区二区精品久久av| 蜜桃av一区二区在线观看| 国产凹凸在线观看一区二区| 欧美亚洲动漫制服丝袜| 欧美成人a∨高清免费观看| 日韩毛片高清在线播放| 免费人成网站在线观看欧美高清| 成人小视频免费在线观看| 欧美这里有精品| 久久精品视频一区二区三区| 亚洲愉拍自拍另类高清精品| 国产乱码精品一区二区三区忘忧草| 91蜜桃网址入口| 精品国产乱码久久| 亚洲一区精品在线| 丁香六月久久综合狠狠色| 欧美喷潮久久久xxxxx| 日本一区免费视频| 强制捆绑调教一区二区| 日本乱人伦一区| 国产精品久久精品日日| 美国十次了思思久久精品导航| 色综合久久久久综合体| 久久久久久免费毛片精品| 婷婷夜色潮精品综合在线| www.亚洲色图.com| 久久先锋资源网| 日本aⅴ免费视频一区二区三区| 99麻豆久久久国产精品免费| 精品国产乱码久久久久久老虎| 亚洲成a人在线观看| 色偷偷久久人人79超碰人人澡| 26uuu色噜噜精品一区二区| 亚洲va欧美va天堂v国产综合| 99热在这里有精品免费| 国产午夜亚洲精品午夜鲁丝片| 美女视频黄 久久| 欧美精选午夜久久久乱码6080| 国产精品久久久久久一区二区三区 | 中文字幕久久午夜不卡| 奇米综合一区二区三区精品视频| 97久久精品人人做人人爽| 国产精品网曝门| 国产精品99精品久久免费| 日韩欧美第一区| 奇米888四色在线精品| 欧美日韩精品一区二区三区| 亚洲一区二区三区在线| 色综合久久久网| 亚洲免费视频成人| 91在线观看成人| 中文字幕亚洲不卡| av不卡一区二区三区| 中文字幕欧美三区| 成人小视频在线| 亚洲图片激情小说| 91亚洲国产成人精品一区二三| 成人免费一区二区三区在线观看 | 日韩午夜电影在线观看| 日韩精品亚洲专区| 欧美肥大bbwbbw高潮| 天堂久久一区二区三区| 日韩视频免费观看高清完整版在线观看 | 亚洲男同性视频| 色94色欧美sute亚洲线路一ni| 一区二区三区色| 欧美日韩一区二区三区不卡| 亚洲国产精品欧美一二99| 欧美日韩一区三区四区| 青青草国产精品97视觉盛宴| 精品欧美乱码久久久久久1区2区 | 国内成+人亚洲+欧美+综合在线| 精品国产乱码久久久久久图片| 国产在线不卡一区| 国产精品午夜免费| 色香蕉成人二区免费| 天涯成人国产亚洲精品一区av| 91精品婷婷国产综合久久竹菊| 青青草91视频| 久久精品视频免费观看| 91在线国产福利| 亚洲高清视频的网址| 欧美成人三级电影在线| 成人免费看黄yyy456| 一区二区三区日韩欧美精品| 欧美一区二区视频网站| 国产一区二区视频在线| 中文字幕中文字幕在线一区| 在线观看一区二区视频| 免费观看在线综合色| 国产日韩欧美电影| 一本久道久久综合中文字幕| 手机精品视频在线观看| 久久久国产精华| 色呦呦国产精品| 另类小说图片综合网| 亚洲欧美综合另类在线卡通| 欧美日韩色一区| 国产精品一区二区x88av| 亚洲欧美成人一区二区三区| 91精品国产一区二区人妖| 国产成人啪免费观看软件| 一卡二卡三卡日韩欧美| 精品国产乱码久久久久久闺蜜| 91一区二区三区在线播放| 久久精品国产网站| 亚洲欧美欧美一区二区三区| 日韩亚洲欧美一区| 色噜噜偷拍精品综合在线| 国产制服丝袜一区| 亚洲国产综合视频在线观看| 久久蜜臀精品av| 欧美日韩视频在线第一区| 成人午夜激情视频| 日本vs亚洲vs韩国一区三区二区 | 欧美一区二区三区日韩| 成人av在线网站| 久久99久久99小草精品免视看| 一区二区视频在线| 国产婷婷色一区二区三区| 欧美一区二区黄| 日本道色综合久久|