[POLICY-122] Policy GUI Fixes
[policy/engine.git] / LogParser / src / main / java / org / openecomp / xacml / parser / LogEntryObject.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * LogParser
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.openecomp.xacml.parser;
22
23 import java.util.Date;
24
25 public class LogEntryObject {
26
27         private  String system;
28         private String description;
29         private Date date;
30         private String remote;
31         private String systemType;
32         private LOGTYPE logType;
33         
34         public enum LOGTYPE {
35                 INFO, DEBUG, ERROR, SEVERE, WARN;
36         }
37                 
38         public String getSystem() {
39                 return system;
40         }
41         public void setSystem(String system) {
42                 this.system = system;
43         }
44         public String getDescription() {
45                 return description;
46         }
47         public void setDescription(String description) {
48                 this.description = description;
49         }
50         public Date getDate() {
51                 return date;
52         }
53         public void setDate(Date date) {
54                 this.date = date;
55         }
56         public String getRemote() {
57                 return remote;
58         }
59         public void setRemote(String remote) {
60                 this.remote = remote;
61         }
62         public String getSystemType() {
63                 return systemType;
64         }
65         public void setSystemType(String systemType) {
66                 this.systemType = systemType;
67         }
68         public LOGTYPE getLogType() {
69                 return logType;
70         }
71         public void setLogType(LOGTYPE logType) {
72                 this.logType = logType;
73         }       
74 }