com.daon.identityx.rest.model.pojo.Tenant 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;
import com.daon.identityx.rest.model.def.TenantStatusEnum;
public class Tenant extends RestResource {
private String name;
private TenantStatusEnum status;
private String domainId;
private Date created;
private Date updated;
private Date archived;
private String privateInfoKeyLabel;
private String databaseMACKeyLabel;
private String keyEncryptionKeyLabel;
private Boolean onboarding;
private String authenticationModalities;
////////////////////////////////////////////////////////////////////////////////////////////////////////////
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public TenantStatusEnum getStatus() {
return status;
}
public void setStatus(TenantStatusEnum status) {
this.status = status;
}
public Date getCreated() {
return created;
}
public void setCreated(Date createdDate) {
this.created = createdDate;
}
public Date getUpdated() {
return updated;
}
public void setUpdated(Date updatedDate) {
this.updated = updatedDate;
}
public Date getArchived() {
return archived;
}
public void setArchived(Date archivedDate) {
this.archived = archivedDate;
}
public String getDomainId() {
return domainId;
}
public void setDomainId(String domainId) {
this.domainId = domainId;
}
public String getPrivateInfoKeyLabel() {
return privateInfoKeyLabel;
}
public void setPrivateInfoKeyLabel(String privateInfoKeyLabel) {
this.privateInfoKeyLabel = privateInfoKeyLabel;
}
public String getDatabaseMACKeyLabel() {
return databaseMACKeyLabel;
}
public void setDatabaseMACKeyLabel(String databaseMACKeyLabel) {
this.databaseMACKeyLabel = databaseMACKeyLabel;
}
public String getKeyEncryptionKeyLabel() {
return keyEncryptionKeyLabel;
}
public void setKeyEncryptionKeyLabel(String keyEncryptionKeyLabel) {
this.keyEncryptionKeyLabel = keyEncryptionKeyLabel;
}
public Boolean getOnboarding() {
return onboarding;
}
public void setOnboarding(Boolean onboarding) {
this.onboarding = onboarding;
}
public Tenant() {
}
public Tenant(String href) {
super(href);
}
public String getAuthenticationModalities() {
return authenticationModalities;
}
public void setAuthenticationModalities(String authenticationModalities) {
this.authenticationModalities = authenticationModalities;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy