| org.kuali.module.chart.service.OrganizationService
All known Subclasses: org.kuali.module.chart.service.impl.OrganizationServiceImpl,
OrganizationService | public interface OrganizationService (Code) | | This interface defines methods that an Org Service must provide.
|
getActiveAccountsByOrg | public List getActiveAccountsByOrg(String chartOfAccountsCode, String organizationCode)(Code) | | Retrieves a List of Accounts that are active, and are tied to this Org. If there are no Accounts that meet this criteria, an
empty list will be returned.
Parameters: chartOfAccountsCode - - chartCode for the Org you want Accounts for Parameters: organizationCode - - orgCode for the Org you want Accounts for A List of Accounts that are active, and tied to this Org |
getActiveChildOrgs | public List getActiveChildOrgs(String chartOfAccountsCode, String organizationCode)(Code) | | Retrieves a List of Orgs that are active, and that ReportTo this Org If there are no Orgs that meet this criteria, an empty
list will be returned.
Parameters: chartOfAccountsCode - - chartCode for the Org you want Child Orgs for Parameters: organizationCode - - orgCode for the Org you want Child Orgs for A List of Orgs that are active, and report to this Org |
getActiveOrgsByType | public List<Org> getActiveOrgsByType(String organizationTypeCode)(Code) | | Returns a list of active organizations with the given organization type code.
Parameters: organizationTypeCode - |
getByPrimaryId | public Org getByPrimaryId(String chartOfAccountsCode, String organizationCode)(Code) | | This method retrieves an organization instance by its composite primary keys (parameters passed in).
Parameters: chartOfAccountsCode - Parameters: organizationCode - An Org instance. |
getRootOrganizationCode | public String[] getRootOrganizationCode()(Code) | | returns the chart and organization of the ACTIVE root-level organization
|
save | public void save(Org organization)(Code) | | Saves an Org object instance.
Parameters: organization - |
|
|