85e15f597cf071280761847a132f3462051b4925
[so.git] / common / src / main / java / org / onap / so / client / grm / beans / OperationalInfo.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
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.onap.so.client.grm.beans;
22
23 import java.io.Serializable;
24
25 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
26 import com.fasterxml.jackson.annotation.JsonInclude;
27 import com.fasterxml.jackson.annotation.JsonProperty;
28 import com.fasterxml.jackson.annotation.JsonPropertyOrder;
29
30 @JsonInclude(JsonInclude.Include.NON_NULL)
31 @JsonIgnoreProperties(ignoreUnknown = true)
32 @JsonPropertyOrder({ "createdBy", "updatedBy", "createdTimestamp", "updatedTimestamp" })
33 public class OperationalInfo implements Serializable{
34
35         /**
36          * 
37          */
38         private static final long serialVersionUID = -7213334079745439793L;
39         @JsonProperty("createdBy")
40         private String createdBy;
41         @JsonProperty("updatedBy")
42         private String updatedBy;
43         @JsonProperty("createdTimestamp")
44         private String createdTimestamp;
45         @JsonProperty("updatedTimestamp")
46         private String updatedTimestamp;
47
48         @JsonProperty("createdBy")
49         public String getCreatedBy() {
50                 return createdBy;
51         }
52
53         @JsonProperty("createdBy")
54         public void setCreatedBy(String createdBy) {
55                 this.createdBy = createdBy;
56         }
57
58         @JsonProperty("updatedBy")
59         public String getUpdatedBy() {
60                 return updatedBy;
61         }
62
63         @JsonProperty("updatedBy")
64         public void setUpdatedBy(String updatedBy) {
65                 this.updatedBy = updatedBy;
66         }
67
68         @JsonProperty("createdTimestamp")
69         public String getCreatedTimestamp() {
70                 return createdTimestamp;
71         }
72
73         @JsonProperty("createdTimestamp")
74         public void setCreatedTimestamp(String createdTimestamp) {
75                 this.createdTimestamp = createdTimestamp;
76         }
77
78         @JsonProperty("updatedTimestamp")
79         public String getUpdatedTimestamp() {
80                 return updatedTimestamp;
81         }
82
83         @JsonProperty("updatedTimestamp")
84         public void setUpdatedTimestamp(String updatedTimestamp) {
85                 this.updatedTimestamp = updatedTimestamp;
86         }
87
88 }