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 / ResourceRequest.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.apihandlerinfra.e2eserviceinstancebeans;
22
23 import com.fasterxml.jackson.annotation.JsonIgnore;
24 import com.fasterxml.jackson.annotation.JsonProperty;
25 import java.util.HashMap;
26 import java.util.Map;
27
28 public class ResourceRequest {
29
30     @JsonProperty("resourceName")
31     private String resourceName;
32
33     @JsonProperty("resourceInvariantUuid")
34     private String resourceInvariantUuid;
35
36     @JsonProperty("resourceUuid")
37     private String resourceUuid;
38
39     @JsonProperty("resourceCustomizationUuid")
40     private String resourceCustomizationUuid;
41
42     @JsonProperty("parameters")
43     private E2EParameters parameters;
44
45     @JsonIgnore
46     private Map<String, Object> additionalProperties = new HashMap<>();
47
48     /**
49      * @return Returns the resourceName.
50      */
51     public String getResourceName() {
52         return resourceName;
53     }
54
55     /**
56      * @param resourceName The resourceName to set.
57      */
58     public void setResourceName(String resourceName) {
59         this.resourceName = resourceName;
60     }
61
62     public Map<String, Object> getAdditionalProperties() {
63         return additionalProperties;
64     }
65
66     public void setAdditionalProperties(Map<String, Object> additionalProperties) {
67         this.additionalProperties = additionalProperties;
68     }
69
70     public String getResourceInvariantUuid() {
71         return resourceInvariantUuid;
72     }
73
74     public void setResourceInvariantUuid(String resourceInvariantUuid) {
75         this.resourceInvariantUuid = resourceInvariantUuid;
76     }
77
78     public String getResourceUuid() {
79         return resourceUuid;
80     }
81
82     public void setResourceUuid(String resourceUuid) {
83         this.resourceUuid = resourceUuid;
84     }
85
86     public String getResourceCustomizationUuid() {
87         return resourceCustomizationUuid;
88     }
89
90     public void setResourceCustomizationUuid(String resourceCustomizationUuid) {
91         this.resourceCustomizationUuid = resourceCustomizationUuid;
92     }
93
94     public E2EParameters getParameters() {
95         return parameters;
96     }
97
98     public void setParameters(E2EParameters parameters) {
99         this.parameters = parameters;
100     }
101 }