org.activiti.engine.impl.persistence.entity.integration.IntegrationContextEntityImpl Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2018 Alfresco, Inc. and/or its affiliates.
*
* 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 org.activiti.engine.impl.persistence.entity.integration;
import org.activiti.engine.impl.persistence.entity.AbstractEntity;
import java.util.Date;
import java.util.HashMap;
public class IntegrationContextEntityImpl extends AbstractEntity implements IntegrationContextEntity {
private String executionId;
private Date createdDate;
private String processInstanceId;
private String processDefinitionId;
private String flowNodeId;
@Override
public String getExecutionId() {
return executionId;
}
@Override
public void setExecutionId(String executionId) {
this.executionId = executionId;
}
public String getProcessDefinitionId() {
return processDefinitionId;
}
public void setProcessDefinitionId(String processDefinitionId) {
this.processDefinitionId = processDefinitionId;
}
public String getProcessInstanceId() {
return processInstanceId;
}
public void setProcessInstanceId(String processInstanceId) {
this.processInstanceId = processInstanceId;
}
@Override
public String getFlowNodeId() {
return flowNodeId;
}
@Override
public void setFlowNodeId(String flowNodeId) {
this.flowNodeId = flowNodeId;
}
public Date getCreatedDate() {
return createdDate;
}
public void setCreatedDate(Date createdDate) {
this.createdDate = createdDate;
}
@Override
public Object getPersistentState() {
return new HashMap<>();
}
}