source: ether_2012/service/interface/com/ether/EtherService.java @ 319

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

Import du projet Ether pour le nouveau look 2012

File size: 537 bytes
Line 
1package com.ether;
2
3import org.jetbrains.annotations.NotNull;
4import org.jetbrains.annotations.Nullable;
5
6import java.util.List;
7
8/**
9 * @author vmipsl
10 * @date 07 mar 2011
11 */
12public interface EtherService extends Service
13{
14        @Nullable
15        List<Plateform> getAllPlateforms() throws ServiceException;
16
17    @Nullable
18    Plateform getPlateformById( @Nullable final Integer plateformId ) throws ServiceException;
19
20    @Nullable
21    List<Parameter> getAllParametersByPlateformId( @NotNull final Integer plateformId ) throws ServiceException;
22}
Note: See TracBrowser for help on using the repository browser.