ipassword.java
来自「一个日本流行的,功能较全的开源Web办公管理(Groupware)系统。」· Java 代码 · 共 33 行
JAVA
33 行
package jp.co.sjts.gsession.tools;
import java.io.Serializable;
/**
* <p>Password偺僀儞僞乕僼僃乕僗 IPassword.java
* <p>Copyright (C) 1999-2000 Japan Total System Co,LTD
*
* @author Satoru K <koni@sjts.co.jp>
*/
public interface IPassword {
public static final int AUTH_NORMAL = 0;
public static final int AUTH_ADMIN = 1;
public class GroupAuth implements Serializable {
public int GID;
public int Auth;
public GroupAuth(int gid,int auth){
GID = gid;
Auth = auth;
}
}
/** LOGON儐乕僓乕幆暿巕傪庢摼偟傑偡丅 */
public String GetUser();
/** 儐乕僓乕ID傪庢摼偟傑偡丅 */
public int GetUserID();
/** 儐乕僓乕柤傪庢摼偟傑偡丅 */
public String GetName();
/** 強懏僌儖乕僾傪庢摼偟傑偡丅 */
public GroupAuth[] GetGroupAuthArray();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?