Merge "Reorder modifiers"
[so.git] / adapters / mso-vfc-adapter / src / main / java / org / openecomp / mso / adapters / vfc / model / NsOperationKey.java
1 /*-\r
2  * ============LICENSE_START=======================================================\r
3  * ONAP - SO\r
4  * ================================================================================\r
5  * Copyright (C) 2017 Huawei Technologies Co., Ltd. All rights reserved.\r
6  * ================================================================================\r
7  * Licensed under the Apache License, Version 2.0 (the "License");\r
8  * you may not use this file except in compliance with the License.\r
9  * You may obtain a copy of the License at\r
10  * \r
11  *      http://www.apache.org/licenses/LICENSE-2.0\r
12  * \r
13  * Unless required by applicable law or agreed to in writing, software\r
14  * distributed under the License is distributed on an "AS IS" BASIS,\r
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  * See the License for the specific language governing permissions and\r
17  * limitations under the License.\r
18  * ============LICENSE_END=========================================================\r
19  */\r
20 \r
21 package org.openecomp.mso.adapters.vfc.model;\r
22 \r
23 /**\r
24  * The operation key object for NS\r
25  * <br>\r
26  * <p>\r
27  * </p>\r
28  * \r
29  * @author\r
30  * @version ONAP Amsterdam Release 2017-09-15\r
31  */\r
32 public class NsOperationKey {\r
33 \r
34     /**\r
35      * The subscriber id\r
36      */\r
37     private String globalSubscriberId;\r
38 \r
39     /**\r
40      * The serviceType\r
41      */\r
42     private String serviceType;\r
43 \r
44     /**\r
45      * The service ID\r
46      */\r
47     private String serviceId;\r
48 \r
49     /**\r
50      * The Operation ID\r
51      */\r
52     private String operationId;\r
53 \r
54     /**\r
55      * the NS template uuid\r
56      */\r
57     private String nodeTemplateUUID;\r
58 \r
59     /**\r
60      * @return Returns the globalSubscriberId.\r
61      */\r
62     public String getGlobalSubscriberId() {\r
63         return globalSubscriberId;\r
64     }\r
65 \r
66     /**\r
67      * @param globalSubscriberId The globalSubscriberId to set.\r
68      */\r
69     public void setGlobalSubscriberId(String globalSubscriberId) {\r
70         this.globalSubscriberId = globalSubscriberId;\r
71     }\r
72 \r
73     /**\r
74      * @return Returns the serviceType.\r
75      */\r
76     public String getServiceType() {\r
77         return serviceType;\r
78     }\r
79 \r
80     /**\r
81      * @param serviceType The serviceType to set.\r
82      */\r
83     public void setServiceType(String serviceType) {\r
84         this.serviceType = serviceType;\r
85     }\r
86 \r
87     /**\r
88      * <br>\r
89      * \r
90      * @return\r
91      * @since ONAP Amsterdam Release\r
92      */\r
93     public String getServiceId() {\r
94         return serviceId;\r
95     }\r
96 \r
97     /**\r
98      * <br>\r
99      * \r
100      * @param serviceId\r
101      * @since ONAP Amsterdam Release\r
102      */\r
103     public void setServiceId(String serviceId) {\r
104         this.serviceId = serviceId;\r
105     }\r
106 \r
107     /**\r
108      * <br>\r
109      * \r
110      * @return\r
111      * @since ONAP Amsterdam Release\r
112      */\r
113     public String getOperationId() {\r
114         return operationId;\r
115     }\r
116 \r
117     /**\r
118      * <br>\r
119      * \r
120      * @param operationId\r
121      * @since ONAP Amsterdam Release\r
122      */\r
123     public void setOperationId(String operationId) {\r
124         this.operationId = operationId;\r
125     }\r
126 \r
127     /**\r
128      * @return Returns the nodeTemplateUUID.\r
129      */\r
130     public String getNodeTemplateUUID() {\r
131         return nodeTemplateUUID;\r
132     }\r
133 \r
134     /**\r
135      * @param nodeTemplateUUID The nodeTemplateUUID to set.\r
136      */\r
137     public void setNodeTemplateUUID(String nodeTemplateUUID) {\r
138         this.nodeTemplateUUID = nodeTemplateUUID;\r
139     }\r
140 \r
141 }\r