001/*
002 * Copyright 2007 The Kuali Foundation
003 * 
004 * Licensed under the Educational Community License, Version 2.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/ecl2.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 */
016package org.kuali.ole.module.purap.dataaccess;
017
018import java.util.Map;
019
020/**
021 * An interface to methods needed to join transaction related tables to create records
022 */
023public interface StatusCodeAndDescriptionForPurapDocumentsDao {
024
025    /**
026     * Retrieves the status code and status description for requistions.
027     *
028     * @return Map<String, String>
029     */
030    public Map<String, String> getRequisitionDocumentStatuses();
031
032    /**
033     * Retrieves the status code and status description for purchase orders.
034     *
035     * @return Map<String, String>
036     */
037    public Map<String, String> getPurchaseOrderDocumentStatuses();
038
039    /**
040     * Retrieves the status code and status description for vendor credit memos.
041     *
042     * @return Map<String, String>
043     */
044    public Map<String, String> getVendorCreditMemoDocumentStatuses();
045
046    /**
047     * Retrieves the status code and status description for payment request.
048     *
049     * @return Map<String, String>
050     */
051    public Map<String, String> getPaymentRequestDocumentStatuses();
052
053    /**
054     * Retrieves the status code and status description for Line Item Receiving.
055     *
056     * @return Map<String, String>
057     */
058    public Map<String, String> getLineItemReceivingDocumentStatuses();
059
060}