8f6cabc85ad2a44d3cde70686694a9d7d2e75e11
[portal/sdk.git] /
1 /*-
2  * ================================================================================
3  * ECOMP Portal SDK
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property
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  * ================================================================================
19  */
20 package org.openecomp.portalsdk.analytics.model.definition;
21
22 import org.openecomp.portalsdk.analytics.RaptorObject;
23
24 public class ReportLogEntry extends RaptorObject {
25         private String logTime = null;
26
27         private String userName = null;
28
29         private String action = null;
30         
31         private String timeTaken;
32         
33         private String runIcon;
34
35         public ReportLogEntry() {
36                 super();
37         }
38
39         public ReportLogEntry(String logTime, String userName, String action, String timeTaken, String runIcon) {
40                 this();
41
42                 setLogTime(logTime);
43                 setUserName(userName);
44                 setAction(action);
45                 setTimeTaken(timeTaken);
46                 setRunIcon(runIcon);
47         } // ReportLogEntry
48
49         public String getLogTime() {
50                 return logTime;
51         }
52
53         public String getUserName() {
54                 return userName;
55         }
56
57         public String getAction() {
58                 return action;
59         }
60
61         public void setLogTime(String logTime) {
62                 this.logTime = logTime;
63         }
64
65         public void setUserName(String userName) {
66                 this.userName = userName;
67         }
68
69         public void setAction(String action) {
70                 this.action = action;
71         }
72
73         public String getTimeTaken() {
74                 return timeTaken;
75         }
76
77         public void setTimeTaken(String timeTaken) {
78                 this.timeTaken = timeTaken;
79         }
80         
81         public String getRunIcon() {
82                 return runIcon;
83         }
84
85         public void setRunIcon(String runIcon) {
86                 this.runIcon = runIcon;
87         }       
88
89 } // ReportLogEntry