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.
16 package org.openo.commontosca.catalog.model.externalservice.entity.containerEntity;
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;
40 public String getDescription() {
43 public void setDescription(String description) {
44 this.description = description;
46 public String getIconUrl() {
49 public void setIconUrl(String iconUrl) {
50 this.iconUrl = iconUrl;
52 public String getPlanServiceName() {
53 return planServiceName;
55 public void setPlanServiceName(String planServiceName) {
56 this.planServiceName = planServiceName;
58 public String getPlanInputMessageUrl() {
59 return planInputMessageUrl;
61 public void setPlanInputMessageUrl(String planInputMessageUrl) {
62 this.planInputMessageUrl = planInputMessageUrl;
64 public String getId() {
67 public void setId(String id) {
70 public String getName() {
73 public void setName(String name) {
76 public String getInputMessageSoap() {
77 return inputMessageSoap;
79 public void setInputMessageSoap(String inputMessageSoap) {
80 this.inputMessageSoap = inputMessageSoap;