view src/kryshen/catalina/startup/PasswdUserConfig.java @ 8:ff1e55a2171f

Refactored.
author Mikhail Kryshen <mikhail@kryshen.net>
date Sun, 01 Nov 2009 05:41:39 +0300
parents
children a3321ea9b33f
line source
1 /*
2 * To change this template, choose Tools | Templates
3 * and open the template in the editor.
4 */
6 package kryshen.catalina.startup;
8 /**
9 *
10 * @author Mikhail Kryshen
11 */
12 public class PasswdUserConfig extends UserConfig {
14 private static final String PASSWD_DATABASE = "passwd";
16 /**
17 * Command for retrieving passwd database.
18 */
19 private String getent = "getent";
21 /**
22 * Get command for retrieving passwd database.
23 */
24 public String getGetent() {
25 return getent;
26 }
28 /**
29 * Set command for retrieving passwd database.
30 */
31 public void setGetent(String getent) {
32 this.getent = getent;
33 }
35 @Override
36 protected void deployUserApps() {
37 // TODO
38 }
40 }