37dc5bda48c12c0a37152ec648a4fbc418b32eb7
[dcaegen2/services/son-handler.git] / src / main / java / org / onap / dcaegen2 / services / sonhms / entity / ClusterDetails.java
1 /*******************************************************************************
2  *  ============LICENSE_START=======================================================
3  *  son-handler
4  *  ================================================================================
5  *   Copyright (C) 2019 Wipro Limited.
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
22 package org.onap.dcaegen2.services.sonhms.entity;
23
24 import javax.persistence.Column;
25 import javax.persistence.Entity;
26 import javax.persistence.Id;
27 import javax.persistence.Table;
28
29 @Entity
30 @Table(name = "CLUSTER_DETAILS")
31 public class ClusterDetails {
32
33     @Id
34     @Column(name = "CLUSTER_ID")
35     private String clusterId;
36
37     @Column(name = "CLUSTER_INFO")
38     private String clusterInfo;
39
40     @Column(name = "CHILD_THREAD_ID")
41     private long childThreadId;
42
43     public ClusterDetails() {
44
45     }
46
47     /**
48      * Parameterised constructor.
49      */
50     public ClusterDetails(String clusterId, String clusterInfo, long childThreadId) {
51         super();
52         this.clusterId = clusterId;
53         this.clusterInfo = clusterInfo;
54         this.childThreadId = childThreadId;
55     }
56
57     public long getChildThreadId() {
58         return childThreadId;
59     }
60
61     public void setChildThreadId(long childThreadId) {
62         this.childThreadId = childThreadId;
63     }
64
65     public String getClusterId() {
66         return clusterId;
67     }
68
69     public void setClusterId(String clusterId) {
70         this.clusterId = clusterId;
71     }
72
73     public String getClusterInfo() {
74         return clusterInfo;
75     }
76
77     public void setClusterInfo(String clusterInfo) {
78         this.clusterInfo = clusterInfo;
79     }
80
81     @Override
82     public String toString() {
83         return "ClusterDetails [clusterId=" + clusterId + ", clusterInfo=" + clusterInfo + ", childThreadId="
84                 + childThreadId + "]";
85     }
86
87 }