View Javadoc
1   /*
2    * Copyright 2006 The Kuali Foundation
3    * 
4    * Licensed under the Educational Community License, Version 2.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/ecl2.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  
17  package org.kuali.ole.fp.businessobject;
18  
19  import static org.kuali.ole.sys.OLEPropertyConstants.ACCOUNT_NUMBER;
20  import static org.kuali.ole.sys.OLEPropertyConstants.AMOUNT;
21  import static org.kuali.ole.sys.OLEPropertyConstants.CHART_OF_ACCOUNTS_CODE;
22  import static org.kuali.ole.sys.OLEPropertyConstants.FINANCIAL_DOCUMENT_LINE_DESCRIPTION;
23  import static org.kuali.ole.sys.OLEPropertyConstants.FINANCIAL_OBJECT_CODE;
24  import static org.kuali.ole.sys.OLEPropertyConstants.FINANCIAL_SUB_OBJECT_CODE;
25  import static org.kuali.ole.sys.OLEPropertyConstants.ORGANIZATION_REFERENCE_ID;
26  import static org.kuali.ole.sys.OLEPropertyConstants.PROJECT_CODE;
27  import static org.kuali.ole.sys.OLEPropertyConstants.REFERENCE_NUMBER;
28  import static org.kuali.ole.sys.OLEPropertyConstants.SUB_ACCOUNT_NUMBER;
29  
30  import org.kuali.ole.sys.businessobject.AccountingLineParserBase;
31  
32  
33  /**
34   * This class represents a <code>NonCheckDisbursementDocument</code> accounting line parser.
35   * 
36   * @see org.kuali.ole.fp.document.NonCheckDisbursementDocument
37   */
38  public class NonCheckDisbursementDocumentAccountingLineParser extends AccountingLineParserBase {
39      protected static final String[] NCD_FORMAT = { CHART_OF_ACCOUNTS_CODE, ACCOUNT_NUMBER, SUB_ACCOUNT_NUMBER, FINANCIAL_OBJECT_CODE, FINANCIAL_SUB_OBJECT_CODE, PROJECT_CODE, ORGANIZATION_REFERENCE_ID, REFERENCE_NUMBER, FINANCIAL_DOCUMENT_LINE_DESCRIPTION, AMOUNT };
40  
41      /**
42       * @see org.kuali.rice.krad.bo.AccountingLineParserBase#getSourceAccountingLineFormat()
43       */
44      @Override
45      public String[] getSourceAccountingLineFormat() {
46          return removeChartFromFormatIfNeeded(NCD_FORMAT);
47      }
48  
49      /**
50       * @see org.kuali.rice.krad.bo.AccountingLineParserBase#getTargetAccountingLineFormat()
51       */
52      @Override
53      public String[] getTargetAccountingLineFormat() {
54          return removeChartFromFormatIfNeeded(NCD_FORMAT);
55      }
56  
57  }