f25be45bb263209a42d9978cd767b7e6eb34df4d
[so.git] / mso-catalog-db / src / main / java / org / onap / so / db / catalog / beans / WorkflowActivitySpecSequence.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 - 2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.so.db.catalog.beans;
22
23 import java.io.Serializable;
24 import javax.persistence.CascadeType;
25 import javax.persistence.Column;
26 import javax.persistence.Entity;
27 import javax.persistence.FetchType;
28 import javax.persistence.GeneratedValue;
29 import javax.persistence.GenerationType;
30 import javax.persistence.Id;
31 import javax.persistence.JoinColumn;
32 import javax.persistence.ManyToOne;
33 import javax.persistence.Table;
34 import org.apache.commons.lang3.builder.EqualsBuilder;
35 import org.apache.commons.lang3.builder.HashCodeBuilder;
36 import org.apache.commons.lang3.builder.ToStringBuilder;
37 import com.openpojo.business.annotation.BusinessKey;
38 import uk.co.blackpepper.bowman.annotation.LinkedResource;
39
40
41 @Entity
42 @Table(name = "workflow_activity_spec_sequence")
43 public class WorkflowActivitySpecSequence implements Serializable {
44
45     private static final long serialVersionUID = -8788505759463286871L;
46
47     @Id
48     @Column(name = "ID", nullable = false, updatable = false)
49     @GeneratedValue(strategy = GenerationType.IDENTITY)
50     private Integer ID;
51
52     @BusinessKey
53     @Column(name = "ACTIVITY_SPEC_ID")
54     private Integer activitySpecId;
55
56     @BusinessKey
57     @Column(name = "WORKFLOW_ID")
58     private Integer workflowId;
59
60     @ManyToOne(cascade = CascadeType.ALL, fetch = FetchType.LAZY)
61     @JoinColumn(name = "ACTIVITY_SPEC_ID", updatable = false, insertable = false)
62     private ActivitySpec activitySpec;
63
64     @ManyToOne(cascade = CascadeType.ALL, fetch = FetchType.LAZY)
65     @JoinColumn(name = "WORKFLOW_ID", updatable = false, insertable = false)
66     private Workflow workflow;
67
68     @Override
69     public String toString() {
70         return new ToStringBuilder(this).append("workflowId", workflowId).append("activitySpecId", activitySpecId)
71                 .toString();
72     }
73
74     @Override
75     public boolean equals(final Object other) {
76         if (!(other instanceof WorkflowActivitySpecSequence)) {
77             return false;
78         }
79         WorkflowActivitySpecSequence castOther = (WorkflowActivitySpecSequence) other;
80         return new EqualsBuilder().append(activitySpecId, castOther.activitySpecId)
81                 .append(workflowId, castOther.workflowId).isEquals();
82     }
83
84     @Override
85     public int hashCode() {
86         return new HashCodeBuilder().append(activitySpecId).append(workflowId).toHashCode();
87     }
88
89     public Integer getID() {
90         return ID;
91     }
92
93     public Integer getActivitySpecId() {
94         return activitySpecId;
95     }
96
97     public void setActivitySpecId(Integer activitySpecId) {
98         this.activitySpecId = activitySpecId;
99     }
100
101     public Integer getWorkflowId() {
102         return workflowId;
103     }
104
105     public void setWorkflowId(Integer workflowId) {
106         this.workflowId = workflowId;
107     }
108
109     @LinkedResource
110     public ActivitySpec getActivitySpec() {
111         return activitySpec;
112     }
113
114     public void setActivitySpec(ActivitySpec activitySpec) {
115         this.activitySpec = activitySpec;
116     }
117
118     @LinkedResource
119     public Workflow getWorkflow() {
120         return workflow;
121     }
122
123     public void setWorkflow(Workflow workflow) {
124         this.workflow = workflow;
125     }
126
127 }