48bf9cdcd3436125e54f16de1dee631caba24b26
[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.XmlAttribute;
21 import javax.xml.bind.annotation.XmlElement;
22 import javax.xml.bind.annotation.XmlTransient;
23
24 @XmlAccessorType(XmlAccessType.FIELD)
25 public class ContainerSelfServiceOption {
26   @XmlElement(namespace = ContainerSelfService.NAMESPACE_OF_SELFSERVICE)
27   private String description;
28   @XmlElement(namespace = ContainerSelfService.NAMESPACE_OF_SELFSERVICE)
29   private String iconUrl;
30   @XmlElement(namespace = ContainerSelfService.NAMESPACE_OF_SELFSERVICE)
31   private String planServiceName;
32   @XmlElement(namespace = ContainerSelfService.NAMESPACE_OF_SELFSERVICE)
33   private String planInputMessageUrl;
34   @XmlAttribute
35   private String id;
36   @XmlAttribute
37   private String name;
38   @XmlTransient
39   private String inputMessageSoap;
40
41   public String getDescription() {
42     return description;
43   }
44
45   public void setDescription(String description) {
46     this.description = description;
47   }
48
49   public String getIconUrl() {
50     return iconUrl;
51   }
52
53   public void setIconUrl(String iconUrl) {
54     this.iconUrl = iconUrl;
55   }
56
57   public String getPlanServiceName() {
58     return planServiceName;
59   }
60
61   public void setPlanServiceName(String planServiceName) {
62     this.planServiceName = planServiceName;
63   }
64
65   public String getPlanInputMessageUrl() {
66     return planInputMessageUrl;
67   }
68
69   public void setPlanInputMessageUrl(String planInputMessageUrl) {
70     this.planInputMessageUrl = planInputMessageUrl;
71   }
72
73   public String getId() {
74     return id;
75   }
76
77   public void setId(String id) {
78     this.id = id;
79   }
80
81   public String getName() {
82     return name;
83   }
84
85   public void setName(String name) {
86     this.name = name;
87   }
88
89   public String getInputMessageSoap() {
90     return inputMessageSoap;
91   }
92
93   public void setInputMessageSoap(String inputMessageSoap) {
94     this.inputMessageSoap = inputMessageSoap;
95   }
96 }