Package org.jivesoftware.openfire.component.ExternalComponentConfiguration

Examples of org.jivesoftware.openfire.component.ExternalComponentConfiguration.Permission


     * @return true if the external component with the specified subdomain can connect to the
     *         local server.
     */
    public static boolean canAccess(String subdomain) {
        // By default there is no permission defined for the XMPP entity
        Permission permission = null;

        ExternalComponentConfiguration config = getConfiguration(subdomain, true);
        if (config != null) {
            permission = config.getPermission();
        }
View Full Code Here

TOP

Related Classes of org.jivesoftware.openfire.component.ExternalComponentConfiguration.Permission

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.