Replaced all tabs with spaces in java and pom.xml
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / onap / so / apihandlerinfra / e2eserviceinstancebeans / LocationConstraint.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 package org.onap.so.apihandlerinfra.e2eserviceinstancebeans;
21
22 import com.fasterxml.jackson.annotation.JsonProperty;
23
24 /**
25  * <br>
26  * <p>
27  * </p>
28  * 
29  * @author
30  * @version ONAP Amsterdam Release 2017-9-6
31  */
32 public class LocationConstraint {
33
34     /**
35      * vnf profile id
36      */
37     @JsonProperty("vnfProfileId")
38     private String vnfProfileId;
39
40     /**
41      * location constraints: vimId
42      */
43     @JsonProperty("locationConstraints")
44     private VimLocation locationConstraints;
45
46     /**
47      * @return Returns the vnfProfileId.
48      */
49     public String getVnfProfileId() {
50         return vnfProfileId;
51     }
52
53     /**
54      * @param vnfProfileId The vnfProfileId to set.
55      */
56     public void setVnfProfileId(String vnfProfileId) {
57         this.vnfProfileId = vnfProfileId;
58     }
59
60
61     /**
62      * @return Returns the locationConstraints.
63      */
64     public VimLocation getLocationConstraints() {
65         return locationConstraints;
66     }
67
68
69     /**
70      * @param locationConstraints The locationConstraints to set.
71      */
72     public void setLocationConstraints(VimLocation locationConstraints) {
73         this.locationConstraints = locationConstraints;
74     }
75
76 }