Coverage Report - org.kuali.student.core.atp.dao.AtpDao
 
Classes in this File Line Coverage Branch Coverage Complexity
AtpDao
N/A
N/A
1
 
 1  
 /**
 2  
  * Copyright 2010 The Kuali Foundation Licensed under the
 3  
  * Educational Community License, Version 2.0 (the "License"); you may
 4  
  * not use this file except in compliance with the License. You may
 5  
  * obtain a copy of the License at
 6  
  *
 7  
  * http://www.osedu.org/licenses/ECL-2.0
 8  
  *
 9  
  * Unless required by applicable law or agreed to in writing,
 10  
  * software distributed under the License is distributed on an "AS IS"
 11  
  * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 12  
  * or implied. See the License for the specific language governing
 13  
  * permissions and limitations under the License.
 14  
  */
 15  
 
 16  
 package org.kuali.student.core.atp.dao;
 17  
 
 18  
 import java.util.Date;
 19  
 import java.util.List;
 20  
 
 21  
 import org.kuali.student.core.atp.entity.Atp;
 22  
 import org.kuali.student.core.atp.entity.DateRange;
 23  
 import org.kuali.student.core.atp.entity.DateRangeType;
 24  
 import org.kuali.student.core.atp.entity.Milestone;
 25  
 import org.kuali.student.core.atp.entity.MilestoneType;
 26  
 import org.kuali.student.core.dao.CrudDao;
 27  
 import org.kuali.student.core.dao.SearchableDao;
 28  
 
 29  
 
 30  
 public interface AtpDao extends CrudDao, SearchableDao {
 31  
 
 32  
         List<Atp> findAtpsByAtpType(String atpTypeKey);
 33  
 
 34  
         List<Atp> findAtpsByDate(Date searchDate);
 35  
 
 36  
         List<Atp> findAtpsByDates(Date startDate, Date endDate);
 37  
 
 38  
         List<DateRangeType> findDateRangeTypesForAtpType(String atpTypeKey);
 39  
 
 40  
         List<DateRange> findDateRangesByAtp(String atpKey);
 41  
 
 42  
         List<DateRange> findDateRangesByDate(Date searchDate);
 43  
 
 44  
         List<MilestoneType> findMilestoneTypesForAtpType(String atpTypeKey);
 45  
 
 46  
         List<Milestone> findMilestonesByAtp(String atpKey);
 47  
 
 48  
         List<Milestone> findMilestonesByDates(Date startDate, Date endDate);
 49  
 
 50  
         List<Milestone> findMilestonesByDatesAndType(String milestoneTypeKey,
 51  
                         Date startDate, Date endDate);
 52  
 
 53  
 }