com.flowcentraltech.flowcentral.collaboration.entities.CollaborationFreeze Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flowcentral-collaboration Show documentation
Show all versions of flowcentral-collaboration Show documentation
Flowcentral Collaboration Module
/*
* Copyright 2021-2024 FlowCentral Technologies Limited.
*
* 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.flowcentraltech.flowcentral.collaboration.entities;
import com.flowcentraltech.flowcentral.application.util.ApplicationNameUtils;
import com.flowcentraltech.flowcentral.common.constants.CollaborationType;
import com.flowcentraltech.flowcentral.common.entities.BaseAuditEntity;
import com.tcdng.unify.core.UnifyException;
import com.tcdng.unify.core.annotation.Column;
import com.tcdng.unify.core.annotation.ForeignKey;
import com.tcdng.unify.core.annotation.Index;
import com.tcdng.unify.core.annotation.ListOnly;
import com.tcdng.unify.core.annotation.Table;
import com.tcdng.unify.core.annotation.UniqueConstraint;
/**
* Entity for storing collaboration freeze information.
*
* @author FlowCentral Technologies Limited
* @since 1.0
*/
@Table(name = "FC_COLLABORATIONFREEZE", uniqueConstraints = { @UniqueConstraint({ "type", "resourceName" }) },
indexes = { @Index({ "applicationName" }), @Index({ "resourceName" }) })
public class CollaborationFreeze extends BaseAuditEntity {
@ForeignKey
private CollaborationType type;
@Column(name = "APPLICATION_NM", length = 64)
private String applicationName;
@Column(name = "RESOURCE_NM", length = 128)
private String resourceName;
@Column(name = "RESOURCE_DESC", length = 128)
private String resourceDesc;
@ListOnly(key = "type", property = "description")
private String typeDesc;
public CollaborationFreeze(CollaborationType type, String resourceName) throws UnifyException {
this.type = type;
this.applicationName = ApplicationNameUtils.getApplicationEntityNameParts(resourceName).getApplicationName();
this.resourceName = resourceName;
}
public CollaborationFreeze() {
}
@Override
public String getDescription() {
return resourceName;
}
public CollaborationType getType() {
return type;
}
public void setType(CollaborationType type) {
this.type = type;
}
public String getApplicationName() {
return applicationName;
}
public void setApplicationName(String applicationName) {
this.applicationName = applicationName;
}
public String getResourceName() {
return resourceName;
}
public void setResourceName(String resourceName) {
this.resourceName = resourceName;
}
public String getResourceDesc() {
return resourceDesc;
}
public void setResourceDesc(String resourceDesc) {
this.resourceDesc = resourceDesc;
}
public String getTypeDesc() {
return typeDesc;
}
public void setTypeDesc(String typeDesc) {
this.typeDesc = typeDesc;
}
}