loginrecord.java

来自「一套完整的工商12315的源程序jsp部分在12315里,后台JAVA部分在gs」· Java 代码 · 共 35 行

JAVA
35
字号
/*
 * LoginRecord.java
 *
 * Created on 2001年8月9日, 下午4:40
 */

package com.gs.db;

/**
 * Login records are used to store the login status of users.
 * Each record contains 4 fields: username, activity, logintime, ipaddress
 *
 */
public interface LoginRecord {
    /**
     * @return the user name 
     */
    public String getUsername();
    /**
     * @return the current activity, it is update by <code>reportPulse</code> method
     * call of IofficeFactory. 
     * @see IofficeFactory
     */
    public String getDoingWhat() ;
    /**
     * @return the login time
     */
    public String getLoginTime() ;
    /**
     * return the client's address
     */
    public String getIPAddr();
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?