Containerization feature of SO
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / onap / so / bpmn / servicedecomposition / bbobjects / Collection.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 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.bpmn.servicedecomposition.bbobjects;
22
23 import java.io.Serializable;
24 import javax.persistence.Id;
25
26 import org.apache.commons.lang3.builder.EqualsBuilder;
27 import org.apache.commons.lang3.builder.HashCodeBuilder;
28 import org.onap.so.bpmn.servicedecomposition.modelinfo.ModelInfoCollection;
29 import org.onap.so.db.catalog.beans.OrchestrationStatus;
30
31 import com.fasterxml.jackson.annotation.JsonProperty;
32 import com.fasterxml.jackson.annotation.JsonRootName;
33 import org.onap.so.bpmn.servicedecomposition.ShallowCopy;
34
35
36 @JsonRootName("collection")
37 public class Collection implements Serializable, ShallowCopy<Collection> {
38         
39         private static final long serialVersionUID = 6389915895863066288L;
40
41         @Id
42         @JsonProperty("id")
43         private String id;
44         @JsonProperty("model-info-collection")
45         private ModelInfoCollection modelInfoCollection;
46         @JsonProperty("instance-group")
47         private InstanceGroup instanceGroup;
48         @JsonProperty("orchestration-status")
49     private OrchestrationStatus orchestrationStatus;
50         @JsonProperty("name")
51         private String name;
52         
53         public String getId() {
54                 return id;
55         }
56         public void setId(String id) {
57                 this.id = id;
58         }
59         public ModelInfoCollection getModelInfoCollection() {
60                 return modelInfoCollection;
61         }
62         public void setModelInfoCollection(ModelInfoCollection modelInfoCollection) {
63                 this.modelInfoCollection = modelInfoCollection;
64         }
65         public InstanceGroup getInstanceGroup() {
66                 return instanceGroup;
67         }
68         public void setInstanceGroup(InstanceGroup instanceGroup) {
69                 this.instanceGroup = instanceGroup;
70         }
71         public OrchestrationStatus getOrchestrationStatus() {
72                 return orchestrationStatus;
73         }
74         public void setOrchestrationStatus(OrchestrationStatus orchestrationStatus) {
75                 this.orchestrationStatus = orchestrationStatus;
76         }
77         public String getName() {
78                 return name;
79         }
80         public void setName(String name) {
81                 this.name = name;
82         }
83         @Override
84         public boolean equals(final Object other) {
85                 if (!(other instanceof Collection)) {
86                         return false;
87                 }
88                 Collection castOther = (Collection) other;
89                 return new EqualsBuilder().append(id, castOther.id).isEquals();
90         }
91         @Override
92         public int hashCode() {
93                 return new HashCodeBuilder().append(id).toHashCode();
94         }
95
96
97 }