Search in sources :

Example 1 with NMASCrOperator

use of password.pwm.util.operations.cr.NMASCrOperator in project pwm by pwm-project.

the class CrService method init.

@Override
public void init(final PwmApplication pwmApplication) throws PwmException {
    this.pwmApplication = pwmApplication;
    operatorMap.put(DataStorageMethod.DB, new DbCrOperator(pwmApplication));
    operatorMap.put(DataStorageMethod.LDAP, new LdapCrOperator(pwmApplication.getConfig()));
    operatorMap.put(DataStorageMethod.LOCALDB, new LocalDbCrOperator(pwmApplication.getLocalDB()));
    operatorMap.put(DataStorageMethod.NMAS, new NMASCrOperator(pwmApplication));
}
Also used : LdapCrOperator(password.pwm.util.operations.cr.LdapCrOperator) LocalDbCrOperator(password.pwm.util.operations.cr.LocalDbCrOperator) DbCrOperator(password.pwm.util.operations.cr.DbCrOperator) LocalDbCrOperator(password.pwm.util.operations.cr.LocalDbCrOperator) NMASCrOperator(password.pwm.util.operations.cr.NMASCrOperator)

Aggregations

DbCrOperator (password.pwm.util.operations.cr.DbCrOperator)1 LdapCrOperator (password.pwm.util.operations.cr.LdapCrOperator)1 LocalDbCrOperator (password.pwm.util.operations.cr.LocalDbCrOperator)1 NMASCrOperator (password.pwm.util.operations.cr.NMASCrOperator)1