001: /*
002: * Copyright 2007 The Kuali Foundation.
003: *
004: * Licensed under the Educational Community License, Version 1.0 (the "License");
005: * you may not use this file except in compliance with the License.
006: * You may obtain a copy of the License at
007: *
008: * http://www.opensource.org/licenses/ecl1.php
009: *
010: * Unless required by applicable law or agreed to in writing, software
011: * distributed under the License is distributed on an "AS IS" BASIS,
012: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013: * See the License for the specific language governing permissions and
014: * limitations under the License.
015: */
016: package org.kuali.module.purap.pdf;
017:
018: import org.kuali.module.purap.bo.CampusParameter;
019:
020: /**
021: * Contains the parameters needed for creating a purchase order pdf document.
022: */
023: public class PurchaseOrderPdfParameters {
024: private String imageTempLocation;
025: private String key;
026: private String logoImage;
027: private String directorSignatureImage;
028: private String contractManagerSignatureImage;
029: private CampusParameter campusParameter;
030: private String statusInquiryUrl;
031: private String contractLanguage;
032: private String pdfFileLocation;
033: private String pdfFileName;
034: private String contractManagerCampusCode;
035: private boolean useImage;
036:
037: public String getContractManagerCampusCode() {
038: return contractManagerCampusCode;
039: }
040:
041: public void setContractManagerCampusCode(
042: String contractManagerCampusCode) {
043: this .contractManagerCampusCode = contractManagerCampusCode;
044: }
045:
046: public String getPdfFileName() {
047: return pdfFileName;
048: }
049:
050: public void setPdfFileName(String pdfFileName) {
051: this .pdfFileName = pdfFileName;
052: }
053:
054: public String getPdfFileLocation() {
055: return pdfFileLocation;
056: }
057:
058: public void setPdfFileLocation(String pdfFileLocation) {
059: this .pdfFileLocation = pdfFileLocation;
060: }
061:
062: public CampusParameter getCampusParameter() {
063: return campusParameter;
064: }
065:
066: public void setCampusParameter(CampusParameter campusParameter) {
067: this .campusParameter = campusParameter;
068: }
069:
070: public String getContractLanguage() {
071: return contractLanguage;
072: }
073:
074: public void setContractLanguage(String contractLanguage) {
075: this .contractLanguage = contractLanguage;
076: }
077:
078: public String getContractManagerSignatureImage() {
079: return contractManagerSignatureImage;
080: }
081:
082: public void setContractManagerSignatureImage(
083: String contractManagerSignatureImage) {
084: this .contractManagerSignatureImage = contractManagerSignatureImage;
085: }
086:
087: public String getDirectorSignatureImage() {
088: return directorSignatureImage;
089: }
090:
091: public void setDirectorSignatureImage(String directorSignatureImage) {
092: this .directorSignatureImage = directorSignatureImage;
093: }
094:
095: public String getImageTempLocation() {
096: return imageTempLocation;
097: }
098:
099: public void setImageTempLocation(String imageTempLocation) {
100: this .imageTempLocation = imageTempLocation;
101: }
102:
103: public String getKey() {
104: return key;
105: }
106:
107: public void setKey(String key) {
108: this .key = key;
109: }
110:
111: public String getLogoImage() {
112: return logoImage;
113: }
114:
115: public void setLogoImage(String logoImage) {
116: this .logoImage = logoImage;
117: }
118:
119: public String getStatusInquiryUrl() {
120: return statusInquiryUrl;
121: }
122:
123: public void setStatusInquiryUrl(String statusInquiryUrl) {
124: this .statusInquiryUrl = statusInquiryUrl;
125: }
126:
127: public boolean isUseImage() {
128: return useImage;
129: }
130:
131: public void setUseImage(boolean useImage) {
132: this.useImage = useImage;
133: }
134:
135: }
|