36fce125924db5377f0395598085bdf147b1fe66
[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 PDFAdditionalOptions complex type.
38  * 
39  * <p>The following schema fragment specifies the expected content contained within this class.
40  * 
41  * <pre>
42  * &lt;complexType name="PDFAdditionalOptions">
43  *   &lt;complexContent>
44  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
45  *       &lt;sequence>
46  *         &lt;element name="PDF_font" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
47  *         &lt;element name="PDF_fontSize" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
48  *         &lt;element name="PDF_orientation" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
49  *         &lt;element name="PDF_logo1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
50  *         &lt;element name="PDF_logo2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
51  *         &lt;element name="PDF_logo1Size" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
52  *         &lt;element name="PDF_logo2Size" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
53  *         &lt;element name="PDF_coverPage" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
54  *         &lt;element name="PDF_footer1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
55  *         &lt;element name="PDF_footer2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
56  *       &lt;/sequence>
57  *     &lt;/restriction>
58  *   &lt;/complexContent>
59  * &lt;/complexType>
60  * </pre>
61  * 
62  * 
63  */
64 @XmlAccessorType(XmlAccessType.FIELD)
65 @XmlType(name = "PDFAdditionalOptions", propOrder = {
66     "pdfFont",
67     "pdfFontSize",
68     "pdfOrientation",
69     "pdfLogo1",
70     "pdfLogo2",
71     "pdfLogo1Size",
72     "pdfLogo2Size",
73     "pdfCoverPage",
74     "pdfFooter1",
75     "pdfFooter2"
76 })
77 public class PDFAdditionalOptions {
78
79     @XmlElement(name = "PDF_font")
80     protected String pdfFont;
81     @XmlElement(name = "PDF_fontSize")
82     protected Integer pdfFontSize;
83     @XmlElement(name = "PDF_orientation")
84     protected String pdfOrientation;
85     @XmlElement(name = "PDF_logo1")
86     protected String pdfLogo1;
87     @XmlElement(name = "PDF_logo2")
88     protected String pdfLogo2;
89     @XmlElement(name = "PDF_logo1Size")
90     protected Integer pdfLogo1Size;
91     @XmlElement(name = "PDF_logo2Size")
92     protected Integer pdfLogo2Size;
93     @XmlElement(name = "PDF_coverPage", defaultValue = "false")
94     protected Boolean pdfCoverPage;
95     @XmlElement(name = "PDF_footer1")
96     protected String pdfFooter1;
97     @XmlElement(name = "PDF_footer2")
98     protected String pdfFooter2;
99
100     /**
101      * Gets the value of the pdfFont property.
102      * 
103      * @return
104      *     possible object is
105      *     {@link String }
106      *     
107      */
108     public String getPDFFont() {
109         return pdfFont;
110     }
111
112     /**
113      * Sets the value of the pdfFont property.
114      * 
115      * @param value
116      *     allowed object is
117      *     {@link String }
118      *     
119      */
120     public void setPDFFont(String value) {
121         this.pdfFont = value;
122     }
123
124     /**
125      * Gets the value of the pdfFontSize property.
126      * 
127      * @return
128      *     possible object is
129      *     {@link Integer }
130      *     
131      */
132     public Integer getPDFFontSize() {
133         return pdfFontSize;
134     }
135
136     /**
137      * Sets the value of the pdfFontSize property.
138      * 
139      * @param value
140      *     allowed object is
141      *     {@link Integer }
142      *     
143      */
144     public void setPDFFontSize(Integer value) {
145         this.pdfFontSize = value;
146     }
147
148     /**
149      * Gets the value of the pdfOrientation property.
150      * 
151      * @return
152      *     possible object is
153      *     {@link String }
154      *     
155      */
156     public String getPDFOrientation() {
157         return pdfOrientation;
158     }
159
160     /**
161      * Sets the value of the pdfOrientation property.
162      * 
163      * @param value
164      *     allowed object is
165      *     {@link String }
166      *     
167      */
168     public void setPDFOrientation(String value) {
169         this.pdfOrientation = value;
170     }
171
172     /**
173      * Gets the value of the pdfLogo1 property.
174      * 
175      * @return
176      *     possible object is
177      *     {@link String }
178      *     
179      */
180     public String getPDFLogo1() {
181         return pdfLogo1;
182     }
183
184     /**
185      * Sets the value of the pdfLogo1 property.
186      * 
187      * @param value
188      *     allowed object is
189      *     {@link String }
190      *     
191      */
192     public void setPDFLogo1(String value) {
193         this.pdfLogo1 = value;
194     }
195
196     /**
197      * Gets the value of the pdfLogo2 property.
198      * 
199      * @return
200      *     possible object is
201      *     {@link String }
202      *     
203      */
204     public String getPDFLogo2() {
205         return pdfLogo2;
206     }
207
208     /**
209      * Sets the value of the pdfLogo2 property.
210      * 
211      * @param value
212      *     allowed object is
213      *     {@link String }
214      *     
215      */
216     public void setPDFLogo2(String value) {
217         this.pdfLogo2 = value;
218     }
219
220     /**
221      * Gets the value of the pdfLogo1Size property.
222      * 
223      * @return
224      *     possible object is
225      *     {@link Integer }
226      *     
227      */
228     public Integer getPDFLogo1Size() {
229         return pdfLogo1Size;
230     }
231
232     /**
233      * Sets the value of the pdfLogo1Size property.
234      * 
235      * @param value
236      *     allowed object is
237      *     {@link Integer }
238      *     
239      */
240     public void setPDFLogo1Size(Integer value) {
241         this.pdfLogo1Size = value;
242     }
243
244     /**
245      * Gets the value of the pdfLogo2Size property.
246      * 
247      * @return
248      *     possible object is
249      *     {@link Integer }
250      *     
251      */
252     public Integer getPDFLogo2Size() {
253         return pdfLogo2Size;
254     }
255
256     /**
257      * Sets the value of the pdfLogo2Size property.
258      * 
259      * @param value
260      *     allowed object is
261      *     {@link Integer }
262      *     
263      */
264     public void setPDFLogo2Size(Integer value) {
265         this.pdfLogo2Size = value;
266     }
267
268     /**
269      * Gets the value of the pdfCoverPage property.
270      * 
271      * @return
272      *     possible object is
273      *     {@link Boolean }
274      *     
275      */
276     public Boolean isPDFCoverPage() {
277         return pdfCoverPage;
278     }
279
280     /**
281      * Sets the value of the pdfCoverPage property.
282      * 
283      * @param value
284      *     allowed object is
285      *     {@link Boolean }
286      *     
287      */
288     public void setPDFCoverPage(Boolean value) {
289         this.pdfCoverPage = value;
290     }
291
292     /**
293      * Gets the value of the pdfFooter1 property.
294      * 
295      * @return
296      *     possible object is
297      *     {@link String }
298      *     
299      */
300     public String getPDFFooter1() {
301         return pdfFooter1;
302     }
303
304     /**
305      * Sets the value of the pdfFooter1 property.
306      * 
307      * @param value
308      *     allowed object is
309      *     {@link String }
310      *     
311      */
312     public void setPDFFooter1(String value) {
313         this.pdfFooter1 = value;
314     }
315
316     /**
317      * Gets the value of the pdfFooter2 property.
318      * 
319      * @return
320      *     possible object is
321      *     {@link String }
322      *     
323      */
324     public String getPDFFooter2() {
325         return pdfFooter2;
326     }
327
328     /**
329      * Sets the value of the pdfFooter2 property.
330      * 
331      * @param value
332      *     allowed object is
333      *     {@link String }
334      *     
335      */
336     public void setPDFFooter2(String value) {
337         this.pdfFooter2 = value;
338     }
339
340 }