Merge "Workflow Recipe Lookup"
[so.git] / bpmn / so-bpmn-tasks / src / main / java / org / onap / so / client / sniro / beans / PlacementInfo.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 - 2019 AT&T Intellectual Property. 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.client.sniro.beans;
22
23 import java.io.Serializable;
24 import java.util.ArrayList;
25 import java.util.List;
26
27 import com.fasterxml.jackson.annotation.JsonProperty;
28 import com.fasterxml.jackson.annotation.JsonPropertyOrder;
29 import com.fasterxml.jackson.annotation.JsonRawValue;
30 import com.fasterxml.jackson.annotation.JsonRootName;
31
32 @JsonPropertyOrder({
33     "subscriberInfo",
34     "placementDemands",
35     "requestParameters"
36 })
37 @JsonRootName("placementInfo")
38 public class PlacementInfo implements Serializable{
39
40         private static final long serialVersionUID = -964488472247386556L;
41
42         @JsonProperty("subscriberInfo")
43         private SubscriberInfo subscriberInfo;
44         @JsonProperty("placementDemands")
45         private List<Demand> demands = new ArrayList<Demand>();
46         @JsonRawValue
47         @JsonProperty("requestParameters")
48         private String requestParameters;
49
50
51         public SubscriberInfo getSubscriberInfo(){
52                 return subscriberInfo;
53         }
54
55         public void setSubscriberInfo(SubscriberInfo subscriberInfo){
56                 this.subscriberInfo = subscriberInfo;
57         }
58
59         public List<Demand> getDemands(){
60                 return demands;
61         }
62
63         public void setDemands(List<Demand> demands){
64                 this.demands = demands;
65         }
66
67         public String getRequestParameters(){
68                 return requestParameters;
69         }
70
71         public void setRequestParameters(String requestParameters){
72                 this.requestParameters = requestParameters;
73         }
74
75 }