source: ether_statistics/persistence/interface/com/ether/dao/MeasureDAO.java @ 569

Last change on this file since 569 was 569, checked in by vmipsl, 12 years ago

Nouveau projet

File size: 668 bytes
Line 
1package com.ether.dao;
2
3import com.ether.PersistenceException;
4import com.medias.database.objects.Mesure;
5import org.jetbrains.annotations.NotNull;
6import org.jetbrains.annotations.Nullable;
7
8import java.util.Date;
9import java.util.List;
10
11/**
12 * @author vmipsl
13 * @date 05 oct. 2011
14 */
15public interface MeasureDAO
16        extends DomainAccessObject<Mesure, Integer>
17{
18    @Nullable
19    Date getFirstDate()
20            throws PersistenceException;
21
22    @Nullable
23    Date getLastDate()
24            throws PersistenceException;
25
26    @Nullable
27    List<Date> getAllMeasureDateByPlateformId( @NotNull final Integer plateformId )
28            throws PersistenceException;
29}
Note: See TracBrowser for help on using the repository browser.