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

📄 loginrecord.java

📁 一套完整的工商12315的源程序jsp部分在12315里,后台JAVA部分在gs12315src里,没有打包数据库.
💻 JAVA
字号:
/*
 * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -