package com.ether.dao; import com.ether.PersistenceException; import com.medias.database.objects.Mesure; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import java.util.Date; import java.util.List; /** * @author vmipsl * @date 05 oct. 2011 */ public interface MeasureDAO extends DomainAccessObject { @Nullable Date getFirstDate() throws PersistenceException; @Nullable Date getLastDate() throws PersistenceException; @Nullable List getAllMeasureDateByPlateformId( @NotNull final Integer plateformId ) throws PersistenceException; }