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

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

Nouveau projet

File size: 434 bytes
Line 
1package com.ether.dao;
2
3import com.ether.PersistenceException;
4import com.medias.annuaire.Personne;
5import org.jetbrains.annotations.NotNull;
6import org.jetbrains.annotations.Nullable;
7
8/**
9 * @author vmipsl
10 * @date 06 dec. 2011
11 */
12public interface PersonDAO
13        extends DomainAccessObject<Personne, Integer>
14{
15    @Nullable
16    Personne getPersonByEmail( @NotNull final String email )
17            throws PersistenceException;
18}
Note: See TracBrowser for help on using the repository browser.