Merge "bump the release to 1.7.2"
[so.git] / common / src / main / java / org / onap / so / beans / nsmf / AllocateAnNssi.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2020 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.beans.nsmf;
22
23 import com.fasterxml.jackson.annotation.JsonInclude;
24
25 @JsonInclude(JsonInclude.Include.NON_NULL)
26 public class AllocateAnNssi {
27
28     @Deprecated
29     public final static String URL = "/api/rest/provMns/v1/an/NSS" + "/SliceProfiles";
30
31     private String nsstId;
32
33     private String nssiId;
34
35     private String nssiName;
36
37     private AnSliceProfile sliceProfile;
38
39     private String scriptName;
40
41     private Object extension;
42
43     private NsiInfo nsiInfo;
44
45     public String getNsstId() {
46         return nsstId;
47     }
48
49     public void setNsstId(String nsstId) {
50         this.nsstId = nsstId;
51     }
52
53     public String getNssiId() {
54         return nssiId;
55     }
56
57     public void setNssiId(String nssiId) {
58         this.nssiId = nssiId;
59     }
60
61     public String getNssiName() {
62         return nssiName;
63     }
64
65     public void setNssiName(String nssiName) {
66         this.nssiName = nssiName;
67     }
68
69     public AnSliceProfile getSliceProfile() {
70         return sliceProfile;
71     }
72
73     public void setSliceProfile(AnSliceProfile sliceProfile) {
74         this.sliceProfile = sliceProfile;
75     }
76
77     public String getScriptName() {
78         return scriptName;
79     }
80
81     public void setScriptName(String scriptName) {
82         this.scriptName = scriptName;
83     }
84
85     public Object getExtension() {
86         return extension;
87     }
88
89     public void setExtension(Object extension) {
90         this.extension = extension;
91     }
92
93     public NsiInfo getNsiInfo() {
94         return nsiInfo;
95     }
96
97     public void setNsiInfo(NsiInfo nsiInfo) {
98         this.nsiInfo = nsiInfo;
99     }
100 }