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

📄 bsauthstate.java

📁 一款即时通讯软件
💻 JAVA
字号:
package edu.ou.kmi.buddyspace.core;

/*
 * BSAuthListener.java
 *
 * Project: BuddySpace
 * (C) Copyright Knowledge Media Institute 2002
 *
 *
 * Created on 16 July 2002, 17:30
 */

import org.jabber.jabberbeans.util.*;

/**
 * <code>BSAuthState</code> contains information about current phase
 * of authentication process.
 *
 * @author  Jiri Komzak, Knowledge Media Institute, Open University, United Kingdom
 */
public class BSAuthState {
    /** BSAuthState enumeration values */
    public final static int NOT_SET        =-1;
    public final static int NOT_AUTHORIZED = 0;
    public final static int AUTHORIZING1   = 1;
    public final static int AUTHORIZING2   = 2;
    public final static int AUTHORIZED     = 3;
    /** stores the value of the enumeration - initially 'not set' */
    public int value = NOT_SET;
    
    public String servedID = null;
    
    public JID jid = null;
}

⌨️ 快捷键说明

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