Merge "Enable DeleteChildService functionality" into recursive-orch
[so.git] / common / src / main / java / org / onap / so / serviceinstancebeans / Service.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright (C) 2017 Huawei Technologies Co., Ltd. All rights reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.so.serviceinstancebeans;
23
24 import java.io.Serializable;
25 import java.util.ArrayList;
26 import java.util.List;
27 import java.util.Map;
28 import com.fasterxml.jackson.annotation.JsonInclude;
29 import com.fasterxml.jackson.annotation.JsonProperty;
30 import com.fasterxml.jackson.annotation.JsonRootName;
31 import com.fasterxml.jackson.annotation.JsonInclude.Include;
32
33 @JsonRootName(value = "service")
34 @JsonInclude(Include.NON_DEFAULT)
35 public class Service implements Serializable {
36
37     private static final long serialVersionUID = 2194797231782624520L;
38     @JsonProperty("modelInfo")
39     protected ModelInfo modelInfo;
40     @JsonProperty("cloudConfiguration")
41     protected CloudConfiguration cloudConfiguration;
42     @JsonProperty("instanceName")
43     protected String instanceName;
44     @JsonProperty("instanceParams")
45     private List<Map<String, String>> instanceParams = new ArrayList<>();
46     @JsonProperty("resources")
47     protected Resources resources;
48     @JsonProperty("processingPriority")
49     protected Integer processingPriority = 0;
50
51
52     public ModelInfo getModelInfo() {
53         return modelInfo;
54     }
55
56     public void setModelInfo(ModelInfo modelInfo) {
57         this.modelInfo = modelInfo;
58     }
59
60     public CloudConfiguration getCloudConfiguration() {
61         return cloudConfiguration;
62     }
63
64     public void setCloudConfiguration(CloudConfiguration cloudConfiguration) {
65         this.cloudConfiguration = cloudConfiguration;
66     }
67
68     public String getInstanceName() {
69         return instanceName;
70     }
71
72     public void setInstanceName(String instanceName) {
73         this.instanceName = instanceName;
74     }
75
76     public List<Map<String, String>> getInstanceParams() {
77         return instanceParams;
78     }
79
80     public void setInstanceParams(List<Map<String, String>> instanceParams) {
81         this.instanceParams = instanceParams;
82     }
83
84     public Resources getResources() {
85         return resources;
86     }
87
88     public void setResources(Resources resources) {
89         this.resources = resources;
90     }
91
92     public Integer getProcessingPriority() {
93         return processingPriority;
94     }
95
96     public void setProcessingPriority(Integer processingPriority) {
97         this.processingPriority = processingPriority;
98     }
99
100
101     @Override
102     public String toString() {
103         return "Service [modelInfo=" + modelInfo + ", cloudConfiguration=" + cloudConfiguration + ", instanceName="
104                 + instanceName + ", instanceParams=" + instanceParams + ", resources=" + resources
105                 + ", processingPriority=" + processingPriority + "]";
106     }
107 }