14b5191ec42713495437ea690635d38d2f06e785
[vfc/nfvo/catalog.git] /
1 /**
2  * Copyright 2016 ZTE Corporation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.openo.commontosca.catalog.model.externalservice.entity.container;
17
18 import javax.xml.bind.annotation.XmlAccessType;
19 import javax.xml.bind.annotation.XmlAccessorType;
20 import javax.xml.bind.annotation.XmlElement;
21
22 @XmlAccessorType(XmlAccessType.FIELD)
23 public class ContainerServiceCommonParam {
24   @XmlElement
25   private String key;
26
27   @XmlElement
28   private String value;
29
30   public String getKey() {
31     return key;
32   }
33
34   public void setKey(String key) {
35     this.key = key;
36   }
37
38   public String getValue() {
39     return value;
40   }
41
42   public void setValue(String value) {
43     this.value = value;
44   }
45 }