84ba5c257bc316d31ee157ff9d9f7e28fe21a85f
[vfc/nfvo/catalog.git] /
1 /**
2  *     Copyright (C) 2016 ZTE, Inc. and others. All rights reserved. (ZTE)
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.orchestrator.nfv.catalog.model.externalservice.entity.containerEntity;
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         public String getDescription() {
41                 return description;
42         }
43         public void setDescription(String description) {
44                 this.description = description;
45         }
46         public String getIconUrl() {
47                 return iconUrl;
48         }
49         public void setIconUrl(String iconUrl) {
50                 this.iconUrl = iconUrl;
51         }
52         public String getPlanServiceName() {
53                 return planServiceName;
54         }
55         public void setPlanServiceName(String planServiceName) {
56                 this.planServiceName = planServiceName;
57         }
58         public String getPlanInputMessageUrl() {
59                 return planInputMessageUrl;
60         }
61         public void setPlanInputMessageUrl(String planInputMessageUrl) {
62                 this.planInputMessageUrl = planInputMessageUrl;
63         }
64         public String getId() {
65                 return id;
66         }
67         public void setId(String id) {
68                 this.id = id;
69         }
70         public String getName() {
71                 return name;
72         }
73         public void setName(String name) {
74                 this.name = name;
75         }
76         public String getInputMessageSoap() {
77                 return inputMessageSoap;
78         }
79         public void setInputMessageSoap(String inputMessageSoap) {
80                 this.inputMessageSoap = inputMessageSoap;
81         }
82 }