📄 ipassword.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -