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

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

Creation projet tapas

File size: 541 bytes
Line 
1package com.ether.dao;
2
3import com.ether.Plateform;
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 PlateformDAO
16        extends DomainAccessObject<Plateform, Integer>
17{
18    @Nullable
19    Plateform getPlateformById( @NotNull final Integer plateformId ) throws PersistenceException;
20
21    @NotNull
22    List<Plateform> getAllPlateforms() throws PersistenceException;
23}
Note: See TracBrowser for help on using the repository browser.