📄 loginrecord.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 + -