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

📄 iqregisterinfo.java

📁 基于Jabber协议的即时消息服务器
💻 JAVA
字号:
/**
 * $RCSfile$
 * $Revision: 128 $
 * $Date: 2004-10-25 20:42:00 -0300 (Mon, 25 Oct 2004) $
 *
 * Copyright (C) 2004 Jive Software. All rights reserved.
 *
 * This software is published under the terms of the GNU Public License (GPL),
 * a copy of which is included in this distribution.
 */

package org.jivesoftware.wildfire.handler;

import org.jivesoftware.wildfire.auth.UnauthorizedException;

/**
 * Handle the various user registration settings that are
 * valid under XMPP. Although user registration is a fairly
 * flexible beast in XMPP, much of registration is redundant to
 * vCard and no mainstream clients support registration fields
 * with much fidelity anyhow. So registration is kept simple,
 * and we defer to vCard for user information gathering.
 *
 * @author Iain Shigeoka
 */
public interface IQRegisterInfo {

    /**
     * An unknown type
     */
    int UNKNOWN = -1;
    /**
     * The user's email
     */
    int EMAIL = 0;
    /**
     * The user's full name
     */
    int NAME = 1;
    /**
     * The user's first name
     */
    int FIRST_NAME = 2;
    /**
     * The user's last name
     */
    int LAST_NAME = 3;
    /**
     * The user's address
     */
    int ADDRESS = 4;
    /**
     * The user's city
     */
    int CITY = 5;
    /**
     * The user's state
     */
    int STATE = 6;
    /**
     * The user's zip code
     */
    int ZIP = 7;
    /**
     * The user's phone
     */
    int PHONE = 8;
    /**
     * The user's url
     */
    int URL = 9;
    /**
     * The date of registration
     */
    int DATE = 10;
    /**
     * Misc data to associate with the account
     */
    int MISC = 11;
    /**
     * Misc text to associate with the account
     */
    int TEXT = 12;

    /**
     * Element names of the fields, array index matches type
     */
    String[] FIELD_NAMES = {
        "email",
        "name",
        "first",
        "last",
        "address",
        "city",
        "state",
        "zip",
        "phone",
        "url",
        "date",
        "misc",
        "text"
    };

    /**
     * Fields should be stored in user properties
     */
    int FIELD_IN_USER_PROPS = 0;
    /**
     * Fields should be stored in vCard
     */
    int FIELD_IN_VCARD = 0;

    /**
     * Determines where field information is stored.
     *
     * @return the location type.
     */
    public int getFieldStoreLocation();

    /**
     * Sets the location for storing field information.
     *
     * @param location The location type
     * @throws org.jivesoftware.wildfire.auth.UnauthorizedException
     *          If you don't have permission to adjust this setting
     */
    public void setFieldStoreLocation(int location) throws UnauthorizedException;

    /**
     * Determines if users can automatically register user accounts
     * without system administrator intervention.
     *
     * @return True if open registration is supported
     */
    public boolean isOpenRegistrationSupported();

    /**
     * Tells the server whether to support open registration or not.
     *
     * @param isSupported True if open registration is supported
     * @throws org.jivesoftware.wildfire.auth.UnauthorizedException
     *          If you don't have permission to change this setting
     */
    public void setOpenRegistrationSupported(boolean isSupported) throws UnauthorizedException;

    /**
     * Determines if a given field is required for registration.
     *
     * @param fieldType The field to check
     * @return True if the field is required
     */
    public boolean isFieldRequired(int fieldType);

    /**
     * Tells the server whether to require a registration field or not.
     *
     * @param fieldType  The field to require.
     * @param isRequired True if the field should be required
     * @throws org.jivesoftware.wildfire.auth.UnauthorizedException
     *          If you don't have permission to change this setting
     */
    public void setFieldRequired(int fieldType, boolean isRequired) throws UnauthorizedException;

    /**
     * Get the setting type from a field's element name. This is a convenience
     * for looking up the correct field type from an element name.
     *
     * @param fieldElementName The known element name
     * @return The field type, one of the static int types defined in this class
     */
    public int getFieldType(String fieldElementName);

    /**
     * Obtain the element name from a field type. This is a convience for
     * looking up the correct field element name from it's field type.
     *
     * @param fieldType The known field type
     * @return The field element name
     */
    public String getFieldElementName(int fieldType);
}

⌨️ 快捷键说明

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