Ignore:
Timestamp:
07/03/12 17:02:35 (12 years ago)
Author:
vmipsl
Message:

Simulations
Process ncdump
Sérialisation jaxb

File:
1 copied

Legend:

Unmodified
Added
Removed
  • ether_megapoli/trunk/persistence/interface/com/ether/dao/VariableDAO.java

    r423 r530  
    11package com.ether.dao; 
    22 
    3 import com.ether.PersistenceException; 
    4 import com.ether.user.User; 
    5 import com.ether.user.UserFilter; 
    6 import com.ether.user.UserState; 
    7 import org.jetbrains.annotations.NotNull; 
    8 import org.jetbrains.annotations.Nullable; 
    9  
    10 import java.util.List; 
     3import com.ether.simulation.Variable; 
    114 
    125/** 
    136 * @author vmipsl 
    14  * @date 29 nov. 2011 
     7 * @date 03 juillet 2012 
    158 */ 
    16 public interface UserDAO 
    17         extends SearchableDomainAccessObject<User, Integer, UserFilter> 
     9public interface VariableDAO 
     10        extends DomainAccessObject<Variable, Integer> 
    1811{ 
    19     @Nullable 
    20     User getUserByEmail( @NotNull final String userEmail ) 
    21             throws PersistenceException; 
    22  
    23     @NotNull 
    24     List<User> getUsersByState( @NotNull final UserState userState ) 
    25             throws PersistenceException; 
    26  
    27     @NotNull 
    28     List<User> getAllUsersByNameOrder() 
    29             throws PersistenceException; 
    3012} 
Note: See TracChangeset for help on using the changeset viewer.