com.daon.identityx.rest.model.pojo.ConfigurationProperty Maven / Gradle / Ivy
/*
* Copyright Daon.
*
* 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 com.daon.identityx.rest.model.pojo;
import java.util.Date;
public class ConfigurationProperty extends RestResource {
private String id;
private String name;
private String category;
private Date created;
private Date updated;
private String type;
private String stringValue;
private byte[] binaryValue;
private boolean readOnlyForTenants;
private boolean obfuscated;
private boolean tenantSpecific;
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Links
private Tenant tenant;
//private Tenant ownerTenant;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getCategory() {
return category;
}
public void setCategory(String category) {
this.category = category;
}
public Date getCreated() {
return created;
}
public void setCreated(Date created) {
this.created = created;
}
public Date getUpdated() {
return updated;
}
public void setUpdated(Date updated) {
this.updated = updated;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getStringValue() {
return stringValue;
}
public void setStringValue(String stringValue) {
this.stringValue = stringValue;
}
public byte[] getBinaryValue() {
return binaryValue;
}
public void setBinaryValue(byte[] binaryValue) {
this.binaryValue = binaryValue;
}
public Tenant getTenant() {
return tenant;
}
public void setTenant(Tenant tenant) {
this.tenant = tenant;
}
/*
public Tenant getOwnerTenant() {
return ownerTenant;
}
public void setOwnerTenant(Tenant ownerTenant) {
this.ownerTenant = ownerTenant;
}*/
public boolean isReadOnlyForTenants() {
return readOnlyForTenants;
}
public void setReadOnlyForTenants(boolean readOnly) {
this.readOnlyForTenants = readOnly;
}
public boolean isTenantSpecific() {
return tenantSpecific;
}
public void setTenantSpecific(boolean tenantSpecific) {
this.tenantSpecific = tenantSpecific;
}
public boolean isObfuscated() {
return obfuscated;
}
public void setObfuscated(boolean obfuscated) {
this.obfuscated = obfuscated;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy