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 wrap: on
line source

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

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 = "getent";

    /**
     * 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;
    }

    @Override
    protected void deployUserApps() {
        // TODO
    }

}