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

📄 ipassword.java

📁 一个日本流行的,功能较全的开源Web办公管理(Groupware)系统。
💻 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   &lt;koni@sjts.co.jp&gt;
 */
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 + -