Package uk.org.whoami.authme.settings

Examples of uk.org.whoami.authme.settings.Settings


    private String columnIp;
    private String columnLastLogin;
    private MiniConnectionPoolManager conPool;

    public MySQLDataSource() throws ClassNotFoundException, SQLException {
        Settings s = Settings.getInstance();
        this.host = s.getMySQLHost();
        this.port = s.getMySQLPort();
        this.username = s.getMySQLUsername();
        this.password = s.getMySQLPassword();

        this.database = s.getMySQLDatabase();
        this.tableName = s.getMySQLTablename();
        this.columnName = s.getMySQLColumnName();
        this.columnPassword = s.getMySQLColumnPassword();
        this.columnIp = s.getMySQLColumnIp();
        this.columnLastLogin = s.getMySQLColumnLastLogin();

        connect();
        setup();
    }
View Full Code Here

TOP

Related Classes of uk.org.whoami.authme.settings.Settings

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.