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

📄 iauthenticator.java

📁 JAVA平台下优秀的CHART开源代码,可以实现类似EXCEL中的二维或三维的饼图/椎图功能.
💻 JAVA
字号:
/**
 * Copyright (C) 2003  Manfred Andres
 * 
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 */
package freecs.auth;

import freecs.core.User;

public interface IAuthenticator {
   /*
    Implementing class has to take care of reading and updating chattime and other data
   */
   
   /**
    *  init gets called when the server is starting up
    */
   public abstract void init () throws Exception;
   
   /**
    * this is called when the server is going down expectedly
    * close every connection and clean up stuff before stopping
    * @throws Exception to let the log-file know that there was an error
    */
   public abstract void shutdown () throws Exception;
   
   /**
    * get's called on an attempt to log in
    * 
    * @param usr the user name of the user wanting to log in
    * @param pwd the password of the user wanting to log in
    * @param cookie the cookie associated with the user's browser
    * @return the newly constructed User on success || null otherwhise
    * @throws Exception if something unexpected happens
    */
   public abstract User loginUser (String usr, String pwd, String cookie) throws Exception;
   
   /**
    * every action which has to be done to log out a user (update chattime and color, ...)
    * has to be done here
    * @param u the user wanting to log out
    * @throws Exception if something unexpected happens
    */
   public abstract void logoutUser (User u) throws Exception;
}

⌨️ 快捷键说明

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