AuthorizationPolicy.java 1.72 KB
Newer Older
Gaston Dombiak's avatar
Gaston Dombiak committed
1 2 3 4 5 6 7 8 9 10 11
/**
 * $RCSfile$
 * $Revision: $
 * $Date: 2006-04-07 09:28:54 -0500 (Fri, 07 Apr 2006) $
 *
 * 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.
 */

12
package org.jivesoftware.openfire.auth;
Gaston Dombiak's avatar
Gaston Dombiak committed
13 14

/**
15 16 17 18 19
 * This is the interface the AuthorizationManager uses to
 * conduct authorizations.
 * <p/>
 * Users that wish to integrate with their own authorization
 * system must implement this interface, and are strongly
Gaston Dombiak's avatar
Gaston Dombiak committed
20 21 22
 * encouraged to extend either the AbstractAuthoriationPolicy
 * or the AbstractAuthorizationProvider classes which allow
 * the admin console manage the classes more effectively.
23
 * Register the class with Openfire in the <tt>openfire.xml</tt>
Gaston Dombiak's avatar
Gaston Dombiak committed
24
 * file.  An entry in that file would look like the following:
25
 * <p/>
Gaston Dombiak's avatar
Gaston Dombiak committed
26 27
 * <pre>
 *   &lt;provider&gt;
28
 *     &lt;authorization&gt;
Gaston Dombiak's avatar
Gaston Dombiak committed
29
 *       &lt;classlist&gt;com.foo.auth.CustomPolicyProvider&lt;/classlist&gt;
30
 *     &lt;/authorization&gt;
Gaston Dombiak's avatar
Gaston Dombiak committed
31 32 33 34
 *   &lt;/provider&gt;</pre>
 *
 * @author Jay Kline
 */
35
public interface AuthorizationPolicy {
Gaston Dombiak's avatar
Gaston Dombiak committed
36 37 38 39

    /**
     * Returns true if the principal is explicity authorized to the JID
     *
40
     * @param username  The username requested.
Gaston Dombiak's avatar
Gaston Dombiak committed
41 42 43 44 45
     * @param principal The principal requesting the username.
     * @return true is the user is authorized to be principal
     */
    public boolean authorize(String username, String principal);

46 47 48 49 50 51 52 53 54 55 56 57 58
    /**
     * Returns the short name of the Policy
     *
     * @return The short name of the Policy
     */
    public abstract String name();

    /**
     * Returns a description of the Policy
     *
     * @return The description of the Policy.
     */
    public abstract String description();
Gaston Dombiak's avatar
Gaston Dombiak committed
59
}