Replaced all tabs with spaces in java and pom.xml
[so.git] / adapters / mso-vfc-adapter / src / main / java / org / onap / so / adapters / vfc / model / NsOperationKey.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 Huawei Technologies Co., Ltd. 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.adapters.vfc.model;
22
23 /**
24  * The operation key object for NS <br>
25  * <p>
26  * </p>
27  * 
28  * @author
29  * @version ONAP Amsterdam Release 2017-09-15
30  */
31 public class NsOperationKey {
32
33     /**
34      * The subscriber id
35      */
36     private String globalSubscriberId;
37
38     /**
39      * The serviceType
40      */
41     private String serviceType;
42
43     /**
44      * The service ID
45      */
46     private String serviceId;
47
48     /**
49      * The Operation ID
50      */
51     private String operationId;
52
53     /**
54      * the NS template uuid
55      */
56     private String nodeTemplateUUID;
57
58     /**
59      * @return Returns the globalSubscriberId.
60      */
61     public String getGlobalSubscriberId() {
62         return globalSubscriberId;
63     }
64
65     /**
66      * @param globalSubscriberId The globalSubscriberId to set.
67      */
68     public void setGlobalSubscriberId(String globalSubscriberId) {
69         this.globalSubscriberId = globalSubscriberId;
70     }
71
72     /**
73      * @return Returns the serviceType.
74      */
75     public String getServiceType() {
76         return serviceType;
77     }
78
79     /**
80      * @param serviceType The serviceType to set.
81      */
82     public void setServiceType(String serviceType) {
83         this.serviceType = serviceType;
84     }
85
86     /**
87      * <br>
88      * 
89      * @return
90      * @since ONAP Amsterdam Release
91      */
92     public String getServiceId() {
93         return serviceId;
94     }
95
96     /**
97      * <br>
98      * 
99      * @param serviceId
100      * @since ONAP Amsterdam Release
101      */
102     public void setServiceId(String serviceId) {
103         this.serviceId = serviceId;
104     }
105
106     /**
107      * <br>
108      * 
109      * @return
110      * @since ONAP Amsterdam Release
111      */
112     public String getOperationId() {
113         return operationId;
114     }
115
116     /**
117      * <br>
118      * 
119      * @param operationId
120      * @since ONAP Amsterdam Release
121      */
122     public void setOperationId(String operationId) {
123         this.operationId = operationId;
124     }
125
126     /**
127      * @return Returns the nodeTemplateUUID.
128      */
129     public String getNodeTemplateUUID() {
130         return nodeTemplateUUID;
131     }
132
133     /**
134      * @param nodeTemplateUUID The nodeTemplateUUID to set.
135      */
136     public void setNodeTemplateUUID(String nodeTemplateUUID) {
137         this.nodeTemplateUUID = nodeTemplateUUID;
138     }
139
140 }