AT&T 1712 and 1802 release code
[so.git] / bpmn / MSOCoreBPMN / src / main / java / org / openecomp / mso / bpmn / core / domain / Configuration.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 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.openecomp.mso.bpmn.core.domain;\r
22 \r
23 import java.io.Serializable;\r
24 \r
25 import com.fasterxml.jackson.annotation.JsonRootName;\r
26 \r
27 /**\r
28  * Stores configuration information and modeled off\r
29  * of the AAI configuration object\r
30  *\r
31  */\r
32 @JsonRootName("configuration")\r
33 public class Configuration extends JsonWrapper implements Serializable{\r
34 \r
35         private static final long serialVersionUID = 1L;\r
36 \r
37         private String id;\r
38         private String name;\r
39         private String type;\r
40         private String orchestrationStatus;\r
41         private String tunnelBandwidth;\r
42         private String vendorAllowedMaxBandwidth;\r
43         private String resourceVersion;\r
44         public String getId() {\r
45                 return id;\r
46         }\r
47         public void setId(String id) {\r
48                 this.id = id;\r
49         }\r
50         public String getName() {\r
51                 return name;\r
52         }\r
53         public void setName(String name) {\r
54                 this.name = name;\r
55         }\r
56         public String getType() {\r
57                 return type;\r
58         }\r
59         public void setType(String type) {\r
60                 this.type = type;\r
61         }\r
62         public String getOrchestrationStatus() {\r
63                 return orchestrationStatus;\r
64         }\r
65         public void setOrchestrationStatus(String orchestrationStatus) {\r
66                 this.orchestrationStatus = orchestrationStatus;\r
67         }\r
68         public String getTunnelBandwidth() {\r
69                 return tunnelBandwidth;\r
70         }\r
71         public void setTunnelBandwidth(String tunnelBandwidth) {\r
72                 this.tunnelBandwidth = tunnelBandwidth;\r
73         }\r
74         public String getVendorAllowedMaxBandwidth() {\r
75                 return vendorAllowedMaxBandwidth;\r
76         }\r
77         public void setVendorAllowedMaxBandwidth(String vendorAllowedMaxBandwidth) {\r
78                 this.vendorAllowedMaxBandwidth = vendorAllowedMaxBandwidth;\r
79         }\r
80         public String getResourceVersion() {\r
81                 return resourceVersion;\r
82         }\r
83         public void setResourceVersion(String resourceVersion) {\r
84                 this.resourceVersion = resourceVersion;\r
85         }\r
86 \r
87 \r
88 }\r