source: tapas/service/interface/com/ether/EtherService.java @ 376

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

Creation projet tapas

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.