workgroupinterceptormanager.java

来自「openfire 服务器源码下载」· Java 代码 · 共 49 行

JAVA
49
字号
/**
 * $RCSfile$
 * $Revision: 19268 $
 * $Date: 2005-07-08 18:26:08 -0700 (Fri, 08 Jul 2005) $
 *
 * Copyright (C) 2004-2008 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, or a commercial license
 * agreement with Jive.
 */

package org.jivesoftware.xmpp.workgroup.interceptor;

import java.util.Arrays;
import java.util.Collection;

/**
 * Manages the packet interceptors that will be invoked every time a packet is sent to a
 * workgroup or a workgroup is sending a packet to a user or an agent. This includes packets
 * sent from a room where the workgroup is an occupant, room creation packets, room invitations
 * packets, users joining a queue, etc.. Therefore, rejection of packets should be done with
 * extremely caution since rejecting a packet that is needed by the workgroup to function
 * correctly (eg. detecting when occupants left the room) may result in unexpected problems.
 *
 * @author Gaston Dombiak
 */
public class WorkgroupInterceptorManager extends InterceptorManager {

    private static InterceptorManager instance = new WorkgroupInterceptorManager();

    /**
     * Returns a singleton instance of WorkgroupInterceptorManager.
     *
     * @return an instance of WorkgroupInterceptorManager.
     */
    public static InterceptorManager getInstance() {
        return instance;
    }

    protected String getPropertySuffix() {
        return "workgroup";
    }

    protected Collection<Class> getBuiltInInterceptorClasses() {
        return Arrays.asList((Class)TrafficMonitor.class, (Class)UserInterceptor.class);
    }
}

⌨️ 快捷键说明

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