Ignore:
Timestamp:
07/17/12 16:37:48 (12 years ago)
Author:
npipsl
Message:

Mise en place 2 couches

  • hibernate
  • service
Location:
geisa/service/interface/com/ether
Files:
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • geisa/service/interface/com/ether/GeisaService.java

    r480 r533  
    88 
    99/** 
    10  * @author vmipsl 
    11  * @date 07 mar 2011 
     10 * @author npipsl 
     11 * @date july 2012 
    1212 */ 
    13 public interface TapasService 
     13public interface GeisaService 
    1414        extends Service 
    1515{ 
     16        @NotNull 
     17    List<IsotopeG03> getAllIsotopeG03() throws ServiceException; 
    1618 
    17     public void createXMLRequest(); 
     19    @NotNull 
     20    List<IsotopeG03> getTransitionsByIsotopeG03Name( final String isotopeName ) throws ServiceException; 
    1821 
    19     public void createXMLFile( final String fichier, final Document document ); 
    20  
    21         @Nullable 
    22         List<Plateform> getAllPlateforms() throws ServiceException; 
    23  
    24     @Nullable 
    25     Plateform getPlateformById( @Nullable final Integer plateformId ) throws ServiceException; 
    26  
    27     @Nullable 
    28     List<Parameter> getAllParametersByPlateformId( @NotNull final Integer plateformId ) throws ServiceException; 
    2922} 
  • geisa/service/interface/com/ether/ServiceException.java

    r390 r533  
    2323        PERSISTENCE,  
    2424        SERVICE_PROBLEM, 
    25         PLATEFORM_NOT_FOUND, 
    26         PARAMETER_NOT_FOUND, 
     25        ISOTOPE_NOT_FOUND 
    2726    } 
    2827} 
Note: See TracChangeset for help on using the changeset viewer.