102e3fc5eca4ff376c8853cf01c23fc715862bd8
[portal/sdk.git] /
1 /*-
2  * ================================================================================
3  * eCOMP Portal SDK
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ================================================================================
19  */
20 //
21 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 
22 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
23 // Any modifications to this file will be lost upon recompilation of the source schema. 
24 // Generated on: 2016.06.07 at 02:07:29 PM EDT 
25 //
26
27
28 package org.openecomp.portalsdk.analytics.xmlobj;
29
30 import javax.xml.bind.annotation.XmlAccessType;
31 import javax.xml.bind.annotation.XmlAccessorType;
32 import javax.xml.bind.annotation.XmlElement;
33 import javax.xml.bind.annotation.XmlType;
34
35
36 /**
37  * <p>Java class for JavascriptItemType complex type.
38  * 
39  * <p>The following schema fragment specifies the expected content contained within this class.
40  * 
41  * <pre>
42  * &lt;complexType name="JavascriptItemType">
43  *   &lt;complexContent>
44  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
45  *       &lt;sequence>
46  *         &lt;element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
47  *         &lt;element name="fieldId" type="{http://www.w3.org/2001/XMLSchema}string"/>
48  *         &lt;element name="callText" type="{http://www.w3.org/2001/XMLSchema}string"/>
49  *       &lt;/sequence>
50  *     &lt;/restriction>
51  *   &lt;/complexContent>
52  * &lt;/complexType>
53  * </pre>
54  * 
55  * 
56  */
57 @XmlAccessorType(XmlAccessType.FIELD)
58 @XmlType(name = "JavascriptItemType", propOrder = {
59     "id",
60     "fieldId",
61     "callText"
62 })
63 public class JavascriptItemType {
64
65     @XmlElement(required = true)
66     protected String id;
67     @XmlElement(required = true)
68     protected String fieldId;
69     @XmlElement(required = true)
70     protected String callText;
71
72     /**
73      * Gets the value of the id property.
74      * 
75      * @return
76      *     possible object is
77      *     {@link String }
78      *     
79      */
80     public String getId() {
81         return id;
82     }
83
84     /**
85      * Sets the value of the id property.
86      * 
87      * @param value
88      *     allowed object is
89      *     {@link String }
90      *     
91      */
92     public void setId(String value) {
93         this.id = value;
94     }
95
96     /**
97      * Gets the value of the fieldId property.
98      * 
99      * @return
100      *     possible object is
101      *     {@link String }
102      *     
103      */
104     public String getFieldId() {
105         return fieldId;
106     }
107
108     /**
109      * Sets the value of the fieldId property.
110      * 
111      * @param value
112      *     allowed object is
113      *     {@link String }
114      *     
115      */
116     public void setFieldId(String value) {
117         this.fieldId = value;
118     }
119
120     /**
121      * Gets the value of the callText property.
122      * 
123      * @return
124      *     possible object is
125      *     {@link String }
126      *     
127      */
128     public String getCallText() {
129         return callText;
130     }
131
132     /**
133      * Sets the value of the callText property.
134      * 
135      * @param value
136      *     allowed object is
137      *     {@link String }
138      *     
139      */
140     public void setCallText(String value) {
141         this.callText = value;
142     }
143
144 }