📄 applicationrolebean.java
字号:
package org.jahia.data.applications;/** * Title: Application Role Bean * desc: Contains one role associated with an application declared in * the web.xml file. This bean is used to generate groups once the application * is generated. * Copyright: Copyright (c) 2002 * Company: Jahia Ltd * @author Serge Huber * @version 1.0 */public class ApplicationRoleBean { private int ID; private int appid; private String roleName; public ApplicationRoleBean(int roleID, int appID, String roleName) { this.ID = roleID; this.appid = appID; this.roleName = roleName; } /** * accessor methods * { */ public int getID() { return ID; } public int getappid () { return appid; } public String getRoleName () { return roleName; } public void setID(int newID) { this.ID = newID; } public void setappid(int appID) { this.appid = appID; } /** * } */}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -