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