Added oparent to sdc main
[sdc.git] / catalog-dao / src / main / java / org / openecomp / sdc / be / resources / data / auditing / model / CommonAuditData.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 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.sdc.be.resources.data.auditing.model;
22
23 public class CommonAuditData {
24     private String description;
25     private String requestId;
26     private String serviceInstanceId;
27     private String status;
28
29     private CommonAuditData() {
30         //for builder
31     }
32
33     public String getStatus() {
34         return status;
35     }
36
37     public String getDescription() {
38         return description;
39     }
40
41     public void setRequestId(String requestId) {
42         this.requestId = requestId;
43     }
44
45     public String getRequestId() {
46         return requestId;
47     }
48
49     public String getServiceInstanceId() {
50         return serviceInstanceId;
51     }
52
53     public void setServiceInstanceId(String serviceInstanceId) {
54         this.serviceInstanceId = serviceInstanceId ;
55     }
56
57     public static Builder newBuilder() {
58         return new Builder();
59     }
60
61     public static class Builder {
62         private final CommonAuditData instance;
63
64         private Builder() {
65             instance = new CommonAuditData();
66         }
67
68         public Builder description(String description) {
69             instance.description = description;
70             return this;
71         }
72
73         public Builder status(int status) {
74             instance.status = String.valueOf(status);
75             return this;
76         }
77
78         public Builder status(String status) {
79             instance.status = status;
80             return this;
81         }
82
83         public Builder requestId(String requestId) {
84             instance.requestId = requestId;
85             return this;
86         }
87
88         public Builder serviceInstanceId(String serviceInstanceId) {
89             instance.serviceInstanceId = serviceInstanceId;
90             return this;
91         }
92
93         public CommonAuditData build() {
94             return instance;
95         }
96
97     }
98
99 }