LoopLog repository
[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
44 import org.onap.clamp.loop.Loop;
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      * The serial version ID.
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 LoopLog() {
84     }
85
86     public LoopLog(String message, LogType logType, Loop loop) {
87         this.message = message;
88         this.logType = logType;
89         this.loop = loop;
90     }
91
92     public Long getId() {
93         return id;
94     }
95
96     public void setId(Long id) {
97         this.id = id;
98     }
99
100     public LogType getLogType() {
101         return logType;
102     }
103
104     public void setLogType(LogType logType) {
105         this.logType = logType;
106     }
107
108     public String getMessage() {
109         return message;
110     }
111
112     public void setMessage(String message) {
113         this.message = message;
114     }
115
116     public Loop getLoop() {
117         return loop;
118     }
119
120     public void setLoop(Loop loop) {
121         this.loop = loop;
122     }
123
124     public Instant getLogInstant() {
125         return logInstant;
126     }
127
128     public void setLogInstant(Instant logInstant) {
129         this.logInstant = logInstant.truncatedTo(ChronoUnit.SECONDS);
130     }
131
132     @Override
133     public int hashCode() {
134         final int prime = 31;
135         int result = 1;
136         result = prime * result + ((id == null) ? 0 : id.hashCode());
137         return result;
138     }
139
140     @Override
141     public boolean equals(Object obj) {
142         if (this == obj) {
143             return true;
144         }
145         if (obj == null) {
146             return false;
147         }
148         if (getClass() != obj.getClass()) {
149             return false;
150         }
151         LoopLog other = (LoopLog) obj;
152         if (id == null) {
153             if (other.id != null) {
154                 return false;
155             }
156         } else if (!id.equals(other.id)) {
157             return false;
158         }
159         return true;
160     }
161
162 }