source: tapas/persistence/interface/com/ether/dao/ParameterDAO.java @ 376

Last change on this file since 376 was 376, checked in by rboipsl, 12 years ago

Creation projet tapas

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.