NativeUserProvider.java 916 Bytes
Newer Older
1
package org.jivesoftware.openfire.user;
2 3 4

/**
 * A UserProvider to be used in conjunction with
5
 * {@link org.jivesoftware.openfire.auth.NativeAuthProvider NativeAuthProvider}, which
6 7 8 9 10 11 12
 * authenticates using OS-level authentication. New user accounts will automatically be
 * created as needed (upon successful initial authentication). To enable this provider,
 * edit the XML config file file and set:
 *
 * <pre>
 * &lt;provider&gt;
 *     &lt;auth&gt;
13
 *         &lt;className&gt;org.jivesoftware.openfire.auth.NativeAuthProvider&lt;/className&gt;
14 15
 *     &lt;/auth&gt;
 *     &lt;user&gt;
16
 *         &lt;className&gt;org.jivesoftware.openfire.user.NativeUserProvider&lt;/className&gt;
17 18 19 20
 *     &lt;/user&gt;
 * &lt;/provider&gt;
 * </pre>
 *
21
 * @see org.jivesoftware.openfire.auth.NativeAuthProvider NativeAuthProvider
22 23 24 25 26
 *
 * @author Matt Tucker
 */
public class NativeUserProvider extends DefaultUserProvider {

27
    
28
}