001/** 002 * 003 * Copyright (c) 2014, the Railo Company Ltd. All rights reserved. 004 * 005 * This library is free software; you can redistribute it and/or 006 * modify it under the terms of the GNU Lesser General Public 007 * License as published by the Free Software Foundation; either 008 * version 2.1 of the License, or (at your option) any later version. 009 * 010 * This library is distributed in the hope that it will be useful, 011 * but WITHOUT ANY WARRANTY; without even the implied warranty of 012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 013 * Lesser General Public License for more details. 014 * 015 * You should have received a copy of the GNU Lesser General Public 016 * License along with this library. If not, see <http://www.gnu.org/licenses/>. 017 * 018 **/ 019package lucee.runtime.tag; 020 021public class PDFParamBean { 022 private String pages; 023 private String password; 024 private Object source; 025 /** 026 * @return the pages 027 */ 028 public String getPages() { 029 return pages; 030 } 031 /** 032 * @param pages the pages to set 033 */ 034 public void setPages(String pages) { 035 this.pages = pages; 036 } 037 /** 038 * @return the password 039 */ 040 public String getPassword() { 041 return password; 042 } 043 /** 044 * @param password the password to set 045 */ 046 public void setPassword(String password) { 047 this.password = password; 048 } 049 /** 050 * @return the source 051 */ 052 public Object getSource() { 053 return source; 054 } 055 /** 056 * @param source the source to set 057 */ 058 public void setSource(Object source) { 059 this.source = source; 060 } 061}