source: ether_2012/persistence/interface/com/ether/dao/ParameterDAO.java @ 319

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

Import du projet Ether pour le nouveau look 2012

File size: 478 bytes
Line 
1package com.ether.dao;
2
3import com.ether.Parameter;
4import com.ether.PersistenceException;
5import org.jetbrains.annotations.NotNull;
6import org.jetbrains.annotations.Nullable;
7
8import java.util.List;
9
10/**
11 * @author vmipsl
12 * @date may 2011
13 * Example for a DAO
14 */
15public interface ParameterDAO
16        extends DomainAccessObject<Parameter, Integer>
17{
18    @Nullable
19    List<Parameter> getAllParametersByPlateformId( @NotNull final Integer plateformId ) throws PersistenceException;
20}
Note: See TracBrowser for help on using the repository browser.