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