packageorg.jivesoftware.openfire.user;/** * A UserProvider to be used in conjunction with * {@link org.jivesoftware.openfire.auth.NativeAuthProvider NativeAuthProvider}, which * 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> * <provider> * <auth> * <className>org.jivesoftware.openfire.auth.NativeAuthProvider</className> * </auth> * <user> * <className>org.jivesoftware.openfire.user.NativeUserProvider</className> * </user> * </provider> * </pre> * * @see org.jivesoftware.openfire.auth.NativeAuthProvider NativeAuthProvider * * @author Matt Tucker */publicclassNativeUserProviderextendsDefaultUserProvider{}