001 /*
002 * Copyright 2011 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 */
016 package org.kuali.kfs.module.bc.document.dataaccess;
017
018 /**
019 * This class defines methods an OrganizationSalarySettingSearchDao must provide
020 */
021 public interface OrganizationSalarySettingSearchDao {
022
023 /**
024 * This method populates BudgetConstructionIntendedIncumbentSelect with rows associated with a set of selected organizations in
025 * the Organization Tree for the user and that have active funding (PendingBudgetConstructionAppointmentFunding).
026 *
027 * @param principalName
028 * @param universityFiscalYear
029 */
030 public void buildIntendedIncumbentSelect(String principalName, Integer universityFiscalYear);
031
032 /**
033 * This method depopulates BudgetConstructionIntendedIncumbentSelect rows associated with a user
034 *
035 * @param principalName
036 */
037 public void cleanIntendedIncumbentSelect(String principalName);
038
039 /**
040 * This method populates BudgetConstructionPositionSelect with rows associated with a set of selected organizations in the
041 * Organization Tree for the user and that are associated with BudgetConstructionPosition (ld_bcn_pos_t) using the
042 * positionDepartmentIdentifier (pos_dept_id))
043 *
044 * @param principalName
045 * @param universityFiscalYear
046 */
047 public void buildPositionSelect(String principalName, Integer universityFiscalYear);
048
049 /**
050 * This method depopulates BudgetConstructionPositionSelect rows associated with a user
051 *
052 * @param principalName
053 */
054 public void cleanPositionSelect(String principalName);
055 }
056