License agreement changes
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / onap / so / client / cds / beans / AbstractCDSPropertiesBean.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2019 TechMahindra
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.cds.beans;
22
23 import java.io.Serializable;
24
25 public class AbstractCDSPropertiesBean implements Serializable {
26
27     private static final long serialVersionUID = -4800522372460352963L;
28
29     private String blueprintName;
30
31     private String blueprintVersion;
32
33     private String requestObject;
34
35     private String originatorId;
36
37     private String requestId;
38
39     private String subRequestId;
40
41     private String actionName;
42
43     private String mode;
44
45     public String getBlueprintName() {
46         return blueprintName;
47     }
48
49     public void setBlueprintName(String blueprintName) {
50         this.blueprintName = blueprintName;
51     }
52
53     public String getBlueprintVersion() {
54         return blueprintVersion;
55     }
56
57     public void setBlueprintVersion(String blueprintVersion) {
58         this.blueprintVersion = blueprintVersion;
59     }
60
61     public String getRequestObject() {
62         return requestObject;
63     }
64
65     public void setRequestObject(String requestObject) {
66         this.requestObject = requestObject;
67     }
68
69     public String getOriginatorId() {
70         return originatorId;
71     }
72
73     public void setOriginatorId(String originatorId) {
74         this.originatorId = originatorId;
75     }
76
77     public String getRequestId() {
78         return requestId;
79     }
80
81     public void setRequestId(String requestId) {
82         this.requestId = requestId;
83     }
84
85     public String getSubRequestId() {
86         return subRequestId;
87     }
88
89     public void setSubRequestId(String subRequestId) {
90         this.subRequestId = subRequestId;
91     }
92
93     public String getActionName() {
94         return actionName;
95     }
96
97     public void setActionName(String actionName) {
98         this.actionName = actionName;
99     }
100
101     public String getMode() {
102         return mode;
103     }
104
105     public void setMode(String mode) {
106         this.mode = mode;
107     }
108
109 }