Removal of dead code
[clamp.git] / src / main / java / org / onap / clamp / loop / log / LoopLog.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights
6  *                             reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END============================================
20  * ===================================================================
21  *
22  */
23
24 package org.onap.clamp.loop.log;
25
26 import com.google.gson.annotations.Expose;
27
28 import java.io.Serializable;
29 import java.time.Instant;
30 import java.time.temporal.ChronoUnit;
31
32 import javax.persistence.Column;
33 import javax.persistence.Entity;
34 import javax.persistence.EnumType;
35 import javax.persistence.Enumerated;
36 import javax.persistence.FetchType;
37 import javax.persistence.GeneratedValue;
38 import javax.persistence.GenerationType;
39 import javax.persistence.Id;
40 import javax.persistence.JoinColumn;
41 import javax.persistence.ManyToOne;
42 import javax.persistence.Table;
43 import org.onap.clamp.loop.Loop;
44
45 /**
46  *
47  * This class holds the logs created by the Clamp Backend. The Instant is always
48  * rounded to the nearest second as the nano seconds can't be stored in the
49  * database. The logs can be therefore exposed to the UI or the client doing
50  * some GET Loop on the backend.
51  *
52  */
53 @Entity
54 @Table(name = "loop_logs")
55 public class LoopLog implements Serializable {
56     /**
57      *
58      */
59     private static final long serialVersionUID = 1988276670074437631L;
60
61     @Expose
62     @Id
63     @GeneratedValue(strategy = GenerationType.AUTO)
64     private Long id;
65
66     @Expose
67     @Column(name = "log_type", nullable = false)
68     @Enumerated(EnumType.STRING)
69     private LogType logType;
70
71     @Expose
72     @Column(name = "message", nullable = false)
73     private String message;
74
75     @ManyToOne(fetch = FetchType.LAZY)
76     @JoinColumn(name = "loop_id", nullable = false)
77     private Loop loop;
78
79     @Expose
80     @Column(name = "log_instant", nullable = false)
81     private Instant logInstant = Instant.now().truncatedTo(ChronoUnit.SECONDS);
82
83     public Long getId() {
84         return id;
85     }
86
87     public void setId(Long id) {
88         this.id = id;
89     }
90
91     public LogType getLogType() {
92         return logType;
93     }
94
95     public void setLogType(LogType logType) {
96         this.logType = logType;
97     }
98
99     public String getMessage() {
100         return message;
101     }
102
103     public void setMessage(String message) {
104         this.message = message;
105     }
106
107     public Loop getLoop() {
108         return loop;
109     }
110
111     public void setLoop(Loop loop) {
112         this.loop = loop;
113     }
114
115     public Instant getLogInstant() {
116         return logInstant;
117     }
118
119     public void setLogInstant(Instant logInstant) {
120         this.logInstant = logInstant.truncatedTo(ChronoUnit.SECONDS);
121     }
122
123     @Override
124     public int hashCode() {
125         final int prime = 31;
126         int result = 1;
127         result = prime * result + ((id == null) ? 0 : id.hashCode());
128         return result;
129     }
130
131     @Override
132     public boolean equals(Object obj) {
133         if (this == obj)
134             return true;
135         if (obj == null)
136             return false;
137         if (getClass() != obj.getClass())
138             return false;
139         LoopLog other = (LoopLog) obj;
140         if (id == null) {
141             if (other.id != null)
142                 return false;
143         } else if (!id.equals(other.id))
144             return false;
145         return true;
146     }
147
148 }