blob: b3ddc7e6aab3d30362218177451bc08e3a66ac5b [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.ftpserver.usermanager;
import java.io.File;
import java.net.URL;
import org.apache.ftpserver.ftplet.UserManager;
import org.apache.ftpserver.usermanager.impl.PropertiesUserManager;
/**
* Factory for the properties file based <code>UserManager</code> implementation.
*
* @author <a href="http://mina.apache.org">Apache MINA Project</a>
*/
public class PropertiesUserManagerFactory implements UserManagerFactory {
private String adminName = "admin";
private File userDataFile;
private URL userDataURL;
private PasswordEncryptor passwordEncryptor = new Md5PasswordEncryptor();
/**
* Creates a {@link PropertiesUserManager} instance based on the provided configuration
*/
public UserManager createUserManager() {
if (userDataURL != null) {
return new PropertiesUserManager(passwordEncryptor, userDataURL,
adminName);
} else {
return new PropertiesUserManager(passwordEncryptor, userDataFile,
adminName);
}
}
/**
* Get the admin name.
* @return The admin user name
*/
public String getAdminName() {
return adminName;
}
/**
* Set the name to use as the administrator of the server. The default value
* is "admin".
*
* @param adminName
* The administrator user name
*/
public void setAdminName(String adminName) {
this.adminName = adminName;
}
/**
* Retrieve the file used to load and store users
* @return The file
*/
public File getFile() {
return userDataFile;
}
/**
* Set the file used to store and read users.
*
* @param propFile
* A file containing users
*/
public void setFile(File propFile) {
this.userDataFile = propFile;
}
/**
* Retrieve the URL used to load and store users
* @return The {@link URL}
*/
public URL getUrl() {
return userDataURL;
}
/**
* Set the URL used to store and read users.
*
* @param userDataURL
* A {@link URL} containing users
*/
public void setUrl(URL userDataURL) {
this.userDataURL = userDataURL;
}
/**
* Retrieve the password encryptor used by user managers created by this factory
* @return The password encryptor. Default to {@link Md5PasswordEncryptor}
* if no other has been provided
*/
public PasswordEncryptor getPasswordEncryptor() {
return passwordEncryptor;
}
/**
* Set the password encryptor to use by user managers created by this factory
* @param passwordEncryptor The password encryptor
*/
public void setPasswordEncryptor(PasswordEncryptor passwordEncryptor) {
this.passwordEncryptor = passwordEncryptor;
}
}