2 * Copyright 2016 ZTE Corporation.
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.
16 package org.openo.commontosca.catalog.model.externalservice.entity.container;
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;
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;
39 private String inputMessageSoap;
41 public String getDescription() {
45 public void setDescription(String description) {
46 this.description = description;
49 public String getIconUrl() {
53 public void setIconUrl(String iconUrl) {
54 this.iconUrl = iconUrl;
57 public String getPlanServiceName() {
58 return planServiceName;
61 public void setPlanServiceName(String planServiceName) {
62 this.planServiceName = planServiceName;
65 public String getPlanInputMessageUrl() {
66 return planInputMessageUrl;
69 public void setPlanInputMessageUrl(String planInputMessageUrl) {
70 this.planInputMessageUrl = planInputMessageUrl;
73 public String getId() {
77 public void setId(String id) {
81 public String getName() {
85 public void setName(String name) {
89 public String getInputMessageSoap() {
90 return inputMessageSoap;
93 public void setInputMessageSoap(String inputMessageSoap) {
94 this.inputMessageSoap = inputMessageSoap;