org.picketlink.idm.config.FileIdentityStoreConfiguration Maven / Gradle / Ivy
/*
* JBoss, Home of Professional Open Source
*
* Copyright 2013 Red Hat, Inc. and/or its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.picketlink.idm.config;
import org.picketlink.idm.credential.handler.CredentialHandler;
import org.picketlink.idm.model.AttributedType;
import org.picketlink.idm.spi.ContextInitializer;
import java.util.List;
import java.util.Map;
import java.util.Set;
/**
* Configuration class for the File-based {@link org.picketlink.idm.spi.IdentityStore} implementation.
*
* @author Pedro Silva
*
*/
public class FileIdentityStoreConfiguration extends AbstractIdentityStoreConfiguration {
private final int asyncThreadPool;
private final boolean asyncWrite;
private final boolean alwaysCreateFiles;
private final String workingDir;
FileIdentityStoreConfiguration(
String workingDir,
boolean preserveState,
boolean asyncWrite,
int asyncWriteThreadPool,
Map, Set> supportedTypes,
Map, Set> unsupportedTypes,
List contextInitializers,
Map credentialHandlerProperties,
Set> credentialHandlers,
boolean supportsAttribute,
boolean supportsCredential,
boolean supportsPermissions) {
super(supportedTypes, unsupportedTypes, contextInitializers, credentialHandlerProperties, credentialHandlers,
supportsAttribute, supportsCredential, supportsPermissions);
this.workingDir = workingDir;
this.alwaysCreateFiles = !preserveState;
this.asyncWrite = asyncWrite;
this.asyncThreadPool = asyncWriteThreadPool;
}
public String getWorkingDir() {
return this.workingDir;
}
public boolean isAlwaysCreateFiles() {
return this.alwaysCreateFiles;
}
public boolean isAsyncWrite() {
return this.asyncWrite;
}
public int getAsyncThreadPool() {
return this.asyncThreadPool;
}
}