4aaa00e8a39a49070dd713bf316f2f736ab8073f
[portal/sdk.git] /
1 /*
2  * ============LICENSE_START==========================================
3  * ONAP Portal SDK
4  * ===================================================================
5  * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * ===================================================================
7  *
8  * Unless otherwise specified, all software contained herein is licensed
9  * under the Apache License, Version 2.0 (the "License");
10  * you may not use this software except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *             http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  *
21  * Unless otherwise specified, all documentation contained herein is licensed
22  * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
23  * you may not use this documentation except in compliance with the License.
24  * You may obtain a copy of the License at
25  *
26  *             https://creativecommons.org/licenses/by/4.0/
27  *
28  * Unless required by applicable law or agreed to in writing, documentation
29  * distributed under the License is distributed on an "AS IS" BASIS,
30  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
31  * See the License for the specific language governing permissions and
32  * limitations under the License.
33  *
34  * ============LICENSE_END============================================
35  *
36  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
37  */
38 //
39 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 
40 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
41 // Any modifications to this file will be lost upon recompilation of the source schema. 
42 // Generated on: 2016.06.07 at 02:07:29 PM EDT 
43 //
44
45
46 package org.onap.portalsdk.analytics.xmlobj;
47
48 import javax.xml.bind.annotation.XmlAccessType;
49 import javax.xml.bind.annotation.XmlAccessorType;
50 import javax.xml.bind.annotation.XmlElement;
51 import javax.xml.bind.annotation.XmlType;
52
53
54 /**
55  * <p>Java class for PDFAdditionalOptions complex type.
56  * 
57  * <p>The following schema fragment specifies the expected content contained within this class.
58  * 
59  * <pre>
60  * &lt;complexType name="PDFAdditionalOptions">
61  *   &lt;complexContent>
62  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
63  *       &lt;sequence>
64  *         &lt;element name="PDF_font" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
65  *         &lt;element name="PDF_fontSize" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
66  *         &lt;element name="PDF_orientation" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
67  *         &lt;element name="PDF_logo1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
68  *         &lt;element name="PDF_logo2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
69  *         &lt;element name="PDF_logo1Size" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
70  *         &lt;element name="PDF_logo2Size" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
71  *         &lt;element name="PDF_coverPage" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
72  *         &lt;element name="PDF_footer1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
73  *         &lt;element name="PDF_footer2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
74  *       &lt;/sequence>
75  *     &lt;/restriction>
76  *   &lt;/complexContent>
77  * &lt;/complexType>
78  * </pre>
79  * 
80  * 
81  */
82 @XmlAccessorType(XmlAccessType.FIELD)
83 @XmlType(name = "PDFAdditionalOptions", propOrder = {
84     "pdfFont",
85     "pdfFontSize",
86     "pdfOrientation",
87     "pdfLogo1",
88     "pdfLogo2",
89     "pdfLogo1Size",
90     "pdfLogo2Size",
91     "pdfCoverPage",
92     "pdfFooter1",
93     "pdfFooter2"
94 })
95 public class PDFAdditionalOptions {
96
97     @XmlElement(name = "PDF_font")
98     protected String pdfFont;
99     @XmlElement(name = "PDF_fontSize")
100     protected Integer pdfFontSize;
101     @XmlElement(name = "PDF_orientation")
102     protected String pdfOrientation;
103     @XmlElement(name = "PDF_logo1")
104     protected String pdfLogo1;
105     @XmlElement(name = "PDF_logo2")
106     protected String pdfLogo2;
107     @XmlElement(name = "PDF_logo1Size")
108     protected Integer pdfLogo1Size;
109     @XmlElement(name = "PDF_logo2Size")
110     protected Integer pdfLogo2Size;
111     @XmlElement(name = "PDF_coverPage", defaultValue = "false")
112     protected Boolean pdfCoverPage;
113     @XmlElement(name = "PDF_footer1")
114     protected String pdfFooter1;
115     @XmlElement(name = "PDF_footer2")
116     protected String pdfFooter2;
117
118     /**
119      * Gets the value of the pdfFont property.
120      * 
121      * @return
122      *     possible object is
123      *     {@link String }
124      *     
125      */
126     public String getPDFFont() {
127         return pdfFont;
128     }
129
130     /**
131      * Sets the value of the pdfFont property.
132      * 
133      * @param value
134      *     allowed object is
135      *     {@link String }
136      *     
137      */
138     public void setPDFFont(String value) {
139         this.pdfFont = value;
140     }
141
142     /**
143      * Gets the value of the pdfFontSize property.
144      * 
145      * @return
146      *     possible object is
147      *     {@link Integer }
148      *     
149      */
150     public Integer getPDFFontSize() {
151         return pdfFontSize;
152     }
153
154     /**
155      * Sets the value of the pdfFontSize property.
156      * 
157      * @param value
158      *     allowed object is
159      *     {@link Integer }
160      *     
161      */
162     public void setPDFFontSize(Integer value) {
163         this.pdfFontSize = value;
164     }
165
166     /**
167      * Gets the value of the pdfOrientation property.
168      * 
169      * @return
170      *     possible object is
171      *     {@link String }
172      *     
173      */
174     public String getPDFOrientation() {
175         return pdfOrientation;
176     }
177
178     /**
179      * Sets the value of the pdfOrientation property.
180      * 
181      * @param value
182      *     allowed object is
183      *     {@link String }
184      *     
185      */
186     public void setPDFOrientation(String value) {
187         this.pdfOrientation = value;
188     }
189
190     /**
191      * Gets the value of the pdfLogo1 property.
192      * 
193      * @return
194      *     possible object is
195      *     {@link String }
196      *     
197      */
198     public String getPDFLogo1() {
199         return pdfLogo1;
200     }
201
202     /**
203      * Sets the value of the pdfLogo1 property.
204      * 
205      * @param value
206      *     allowed object is
207      *     {@link String }
208      *     
209      */
210     public void setPDFLogo1(String value) {
211         this.pdfLogo1 = value;
212     }
213
214     /**
215      * Gets the value of the pdfLogo2 property.
216      * 
217      * @return
218      *     possible object is
219      *     {@link String }
220      *     
221      */
222     public String getPDFLogo2() {
223         return pdfLogo2;
224     }
225
226     /**
227      * Sets the value of the pdfLogo2 property.
228      * 
229      * @param value
230      *     allowed object is
231      *     {@link String }
232      *     
233      */
234     public void setPDFLogo2(String value) {
235         this.pdfLogo2 = value;
236     }
237
238     /**
239      * Gets the value of the pdfLogo1Size property.
240      * 
241      * @return
242      *     possible object is
243      *     {@link Integer }
244      *     
245      */
246     public Integer getPDFLogo1Size() {
247         return pdfLogo1Size;
248     }
249
250     /**
251      * Sets the value of the pdfLogo1Size property.
252      * 
253      * @param value
254      *     allowed object is
255      *     {@link Integer }
256      *     
257      */
258     public void setPDFLogo1Size(Integer value) {
259         this.pdfLogo1Size = value;
260     }
261
262     /**
263      * Gets the value of the pdfLogo2Size property.
264      * 
265      * @return
266      *     possible object is
267      *     {@link Integer }
268      *     
269      */
270     public Integer getPDFLogo2Size() {
271         return pdfLogo2Size;
272     }
273
274     /**
275      * Sets the value of the pdfLogo2Size property.
276      * 
277      * @param value
278      *     allowed object is
279      *     {@link Integer }
280      *     
281      */
282     public void setPDFLogo2Size(Integer value) {
283         this.pdfLogo2Size = value;
284     }
285
286     /**
287      * Gets the value of the pdfCoverPage property.
288      * 
289      * @return
290      *     possible object is
291      *     {@link Boolean }
292      *     
293      */
294     public Boolean isPDFCoverPage() {
295         return pdfCoverPage;
296     }
297
298     /**
299      * Sets the value of the pdfCoverPage property.
300      * 
301      * @param value
302      *     allowed object is
303      *     {@link Boolean }
304      *     
305      */
306     public void setPDFCoverPage(Boolean value) {
307         this.pdfCoverPage = value;
308     }
309
310     /**
311      * Gets the value of the pdfFooter1 property.
312      * 
313      * @return
314      *     possible object is
315      *     {@link String }
316      *     
317      */
318     public String getPDFFooter1() {
319         return pdfFooter1;
320     }
321
322     /**
323      * Sets the value of the pdfFooter1 property.
324      * 
325      * @param value
326      *     allowed object is
327      *     {@link String }
328      *     
329      */
330     public void setPDFFooter1(String value) {
331         this.pdfFooter1 = value;
332     }
333
334     /**
335      * Gets the value of the pdfFooter2 property.
336      * 
337      * @return
338      *     possible object is
339      *     {@link String }
340      *     
341      */
342     public String getPDFFooter2() {
343         return pdfFooter2;
344     }
345
346     /**
347      * Sets the value of the pdfFooter2 property.
348      * 
349      * @param value
350      *     allowed object is
351      *     {@link String }
352      *     
353      */
354     public void setPDFFooter2(String value) {
355         this.pdfFooter2 = value;
356     }
357
358 }