de.arbeitsagentur.opdt.keycloak.filestore.realm.FileRequiredCredentialEntity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of keycloak-extension-filestore Show documentation
Show all versions of keycloak-extension-filestore Show documentation
Keycloak-DatastoreProvider storing data in file system
/*
* Copyright 2024. IT-Systemhaus der Bundesagentur fuer Arbeit
*
* 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 de.arbeitsagentur.opdt.keycloak.filestore.realm;
import de.arbeitsagentur.opdt.keycloak.filestore.common.UpdatableEntity;
import org.keycloak.models.RequiredCredentialModel;
public class FileRequiredCredentialEntity implements UpdatableEntity {
private boolean isUpdated = false;
private String type;
private String formLabel;
private Boolean secret = false;
private Boolean input = false;
static FileRequiredCredentialEntity fromModel(RequiredCredentialModel model) {
if (model == null) return null;
FileRequiredCredentialEntity entity = new FileRequiredCredentialEntity();
entity.setFormLabel(model.getFormLabel());
entity.setType(model.getType());
entity.setInput(model.isInput());
entity.setSecret(model.isSecret());
return entity;
}
static RequiredCredentialModel toModel(FileRequiredCredentialEntity entity) {
if (entity == null) return null;
RequiredCredentialModel model = new RequiredCredentialModel();
model.setFormLabel(entity.getFormLabel());
model.setType(entity.getType());
Boolean secret = entity.isSecret();
model.setSecret(secret == null ? false : secret);
Boolean input = entity.isInput();
model.setInput(input == null ? false : input);
return model;
}
public boolean isUpdated() {
return this.isUpdated;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getFormLabel() {
return this.formLabel;
}
public void setFormLabel(String formLabel) {
this.formLabel = formLabel;
}
public Boolean isSecret() {
return this.secret;
}
public void setSecret(Boolean secret) {
this.secret = secret;
}
public Boolean isInput() {
return this.input;
}
public void setInput(Boolean input) {
this.input = input;
}
public void setUpdated(boolean updated) {
isUpdated = updated;
}
public Boolean getSecret() {
return secret;
}
public Boolean getInput() {
return input;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy