2 * Copyright 2016 [ZTE] and others.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 package org.openo.commontosca.catalog.model.externalservice.entity.container;
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;
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;
40 private String inputMessageSoap;
42 public String getDescription() {
46 public void setDescription(String description) {
47 this.description = description;
50 public String getIconUrl() {
54 public void setIconUrl(String iconUrl) {
55 this.iconUrl = iconUrl;
58 public String getPlanServiceName() {
59 return planServiceName;
62 public void setPlanServiceName(String planServiceName) {
63 this.planServiceName = planServiceName;
66 public String getPlanInputMessageUrl() {
67 return planInputMessageUrl;
70 public void setPlanInputMessageUrl(String planInputMessageUrl) {
71 this.planInputMessageUrl = planInputMessageUrl;
74 public String getId() {
78 public void setId(String id) {
82 public String getName() {
86 public void setName(String name) {
90 public String getInputMessageSoap() {
91 return inputMessageSoap;
94 public void setInputMessageSoap(String inputMessageSoap) {
95 this.inputMessageSoap = inputMessageSoap;