All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.camunda.bpm.engine.impl.persistence.entity.CamundaFormDefinitionEntity Maven / Gradle / Ivy

There is a newer version: 7.22.0-alpha5
Show newest version
/*
 * Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH
 * under one or more contributor license agreements. See the NOTICE file
 * distributed with this work for additional information regarding copyright
 * ownership. Camunda licenses this file to you under the Apache License,
 * Version 2.0; 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.camunda.bpm.engine.impl.persistence.entity;

import java.io.Serializable;
import org.camunda.bpm.engine.impl.db.DbEntity;
import org.camunda.bpm.engine.impl.db.HasDbRevision;
import org.camunda.bpm.engine.impl.repository.ResourceDefinitionEntity;
import org.camunda.bpm.engine.repository.CamundaFormDefinition;

public class CamundaFormDefinitionEntity implements CamundaFormDefinition,
    ResourceDefinitionEntity, DbEntity, HasDbRevision, Serializable {

  private static final long serialVersionUID = 1L;

  protected String id;
  protected int revision = 1;
  protected String key;
  protected int version;
  protected String deploymentId;
  protected String resourceName;
  protected String tenantId;


  public CamundaFormDefinitionEntity(String key, String deploymentId, String resourceName, String tenantId) {
    this.key = key;
    this.deploymentId = deploymentId;
    this.resourceName = resourceName;
    this.tenantId = tenantId;
  }

  public String getId() {
    return id;
  }

  public void setId(String id) {
    this.id = id;
  }

  public int getRevision() {
    return revision;
  }

  public void setRevision(int revision) {
    this.revision = revision;
  }

  public int getRevisionNext() {
    return revision + 1;
  }

  public String getKey() {
    return key;
  }

  public void setKey(String key) {
    this.key = key;
  }

  public int getVersion() {
    return version;
  }

  public void setVersion(int version) {
    this.version = version;
  }

  public String getDeploymentId() {
    return deploymentId;
  }

  public void setDeploymentId(String deploymentId) {
    this.deploymentId = deploymentId;
  }

  public String getResourceName() {
    return resourceName;
  }

  public void setResourceName(String resourceName) {
    this.resourceName = resourceName;
  }

  public String getTenantId() {
    return tenantId;
  }

  public void setTenantId(String tenantId) {
    this.tenantId = tenantId;
  }

  @Override
  public String getCategory() {
    throw new UnsupportedOperationException();
  }

  @Override
  public CamundaFormDefinitionEntity getPreviousDefinition() {
    throw new UnsupportedOperationException();
  }

  @Override
  public void setCategory(String category) {
    throw new UnsupportedOperationException();
  }

  @Override
  public String getDiagramResourceName() {
    throw new UnsupportedOperationException("deployment of diagrams not supported for Camunda Forms");
  }

  @Override
  public void setDiagramResourceName(String diagramResourceName) {
    throw new UnsupportedOperationException("deployment of diagrams not supported for Camunda Forms");
  }

  @Override
  public Integer getHistoryTimeToLive() {
    throw new UnsupportedOperationException("history time to live not supported for Camunda Forms");
  }

  @Override
  public void setHistoryTimeToLive(Integer historyTimeToLive) {
    throw new UnsupportedOperationException("history time to live not supported for Camunda Forms");
  }

  @Override
  public Object getPersistentState() {
    // properties of this entity are immutable
    return CamundaFormDefinitionEntity.class;
  }

  @Override
  public void updateModifiableFieldsFromEntity(CamundaFormDefinitionEntity updatingDefinition) {
    throw new UnsupportedOperationException("properties of Camunda Form Definitions are immutable");
  }

  @Override
  public String getName() {
    throw new UnsupportedOperationException("name property not supported for Camunda Forms");
  }

  @Override
  public void setName(String name) {
    throw new UnsupportedOperationException("name property not supported for Camunda Forms");
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy