| org.kuali.module.chart.service.ObjectCodeService
All known Subclasses: org.kuali.module.chart.service.impl.ObjectCodeServiceImpl,
ObjectCodeService | public interface ObjectCodeService (Code) | | This interface defines methods that an ObjectCode Service must provide.
|
Method Summary | |
public ObjectCode | getByPrimaryId(Integer universityFiscalYear, String chartOfAccountsCode, String financialObjectCode) | public ObjectCode | getByPrimaryIdForCurrentYear(String chartOfAccountsCode, String financialObjectCode) This method returns an financial object code for the current fiscal year. | public String | getObjectCodeNamesByCharts(Integer universityFiscalYear, String[] chartOfAccountCodes, String financialObjectCode) This method, written for use with DWR, returns a joined string representation of all of the names of the distinct object
codes associated with each of the chart codes given. | public List | getYearList(String chartOfAccountsCode, String financialObjectCode) Parameters: chartOfAccountsCode - - Chart of Accounts Code Parameters: financialObjectCode - - Financial Object Code a list containing integer years, given object code. |
getByPrimaryId | public ObjectCode getByPrimaryId(Integer universityFiscalYear, String chartOfAccountsCode, String financialObjectCode)(Code) | | Parameters: universityFiscalYear - - University Fiscal Year Parameters: chartOfAccountsCode - - Chart of Accounts Code Parameters: financialObjectCode - - Financial Object Code ObjectCode Retrieves an ObjectCode object based on primary key. |
getByPrimaryIdForCurrentYear | public ObjectCode getByPrimaryIdForCurrentYear(String chartOfAccountsCode, String financialObjectCode)(Code) | | This method returns an financial object code for the current fiscal year.
Parameters: chartOfAccountsCode - chart of accounts code for object code Parameters: financialObjectCode - financial object code the object code specified |
getObjectCodeNamesByCharts | public String getObjectCodeNamesByCharts(Integer universityFiscalYear, String[] chartOfAccountCodes, String financialObjectCode)(Code) | | This method, written for use with DWR, returns a joined string representation of all of the names of the distinct object
codes associated with each of the chart codes given. In the best of all possible worlds, this will only ever return *one*
object code name, as object codes will be shared across charts.
Parameters: universityFiscalYear - the fiscal year of the financial object code to check. Parameters: chartOfAccountCodes - array of Chart of Accounts codes to Parameters: financialObjectCode - financial object code to look up a String representation of the distinct names of the object codes |
getYearList | public List getYearList(String chartOfAccountsCode, String financialObjectCode)(Code) | | Parameters: chartOfAccountsCode - - Chart of Accounts Code Parameters: financialObjectCode - - Financial Object Code a list containing integer years, given object code. The list may be empty, but will not be null. |
|
|