Mercurial > hg > tomcat-userconfig
view src/kryshen/catalina/startup/PasswdUserConfig.java @ 9:a3321ea9b33f
Update.
author | Mikhail Kryshen <mikhail@kryshen.net> |
---|---|
date | Mon, 02 Nov 2009 18:36:24 +0300 |
parents | ff1e55a2171f |
children | 086a55aa2620 |
line wrap: on
line source
package kryshen.catalina.startup; /** * * @author Mikhail Kryshen */ public class PasswdUserConfig extends UserConfig { private static final String PASSWD_DATABASE = "passwd"; /** * Command for retrieving passwd database. */ private String getent = null; /** * Path to local passwd file. */ private String passwd = "/etc/passwd"; /** * Get command for retrieving passwd database. */ public String getGetent() { return getent; } /** * Set command for retrieving passwd database. */ public void setGetent(String getent) { this.getent = getent; } /** * Get path to local passwd file. */ public String getPasswd() { return passwd; } /** * Set path to local passwd file. */ public void setPasswd(String passwd) { this.passwd = passwd; } @Override protected void deployUserApps() { // TODO } }