/** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.apache.airavata.registry.core.workflow.catalog.model; import javax.persistence.*; import java.io.Serializable; import java.sql.Timestamp; @Entity @Table(name = "EDGE") @IdClass(Edge_PK.class) public class Edge implements Serializable { @Id @Column(name = "TEMPLATE_ID") private String templateId; @Id @Column(name = "EDGE_ID") private String edgeId; @Column(name = "NAME") private String name; @Column(name = "COMPONENT_STATUS_ID") private String componentStatusId; @Column(name = "DESCRIPTION") private String description; @Column(name = "CREATED_TIME") private Timestamp createdTime; @ManyToOne(cascade= CascadeType.MERGE) @JoinColumn(name = "TEMPLATE_ID") private Workflow workflow; public String getTemplateId() { return templateId; } public void setTemplateId(String templateId) { this.templateId = templateId; } public String getEdgeId() { return edgeId; } public void setEdgeId(String edgeId) { this.edgeId = edgeId; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getComponentStatusId() { return componentStatusId; } public void setComponentStatusId(String componentStatusId) { this.componentStatusId = componentStatusId; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public Workflow getWorkflow() { return workflow; } public void setWorkflow(Workflow workflow) { this.workflow = workflow; } public Timestamp getCreatedTime() { return createdTime; } public void setCreatedTime(Timestamp createdTime) { this.createdTime = createdTime; } }