View Javadoc
1   /*
2    * Copyright 2010 The Kuali Foundation.
3    * 
4    * Licensed under the Educational Community License, Version 1.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    * 
8    * http://www.opensource.org/licenses/ecl1.php
9    * 
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.ole.module.purap.pdf;
17  
18  import org.kuali.ole.module.purap.businessobject.PurchaseOrderVendorQuote;
19  import org.kuali.ole.module.purap.document.PurchaseOrderDocument;
20  
21  public interface PurchaseOrderParameters {
22      /**
23       * This method returns the purchase Order transmit parameters require to generate
24       * purchase order and purchase order quote pdf.
25       *
26       * @param po
27       * @param povq
28       * @return
29       */
30      public void setPurchaseOrderPdfParameters(PurchaseOrderDocument po);
31  
32      /**
33       * This method returns the purchase Order transmit parameters require to generate
34       * purchase order and purchase order quote pdf.
35       *
36       * @param po
37       * @param povq
38       * @return
39       */
40      public void setPurchaseOrderPdfParameters(PurchaseOrderDocument po, PurchaseOrderVendorQuote povq);
41  
42      /**
43       * This method returns the purchase order transmit parameters require to send
44       * purchase order and purchase order quote fax.
45       *
46       * @param po
47       * @param povq
48       * @return
49       */
50      public void setPurchaseOrderFaxParameters(PurchaseOrderDocument po, PurchaseOrderVendorQuote povq);
51  
52      /**
53       * This method returns the purchase order transmit parameters require to
54       * generate purchase order and purchase order quote pdf and to send fax.
55       *
56       * @param po
57       * @param povq
58       * @return
59       */
60      public void setPurchaseOrderPdfAndFaxParameters(PurchaseOrderDocument po);
61  
62      /**
63       * This method returns the purchase order transmit parameters require to
64       * generate purchase order and purchase order quote pdf and to send fax.
65       *
66       * @param po
67       * @param povq
68       * @return
69       */
70      public void setPurchaseOrderPdfAndFaxParameters(PurchaseOrderDocument po, PurchaseOrderVendorQuote povq);
71  }