source: tapas/service/interface/com/ether/TapasService.java @ 384

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

clean

File size: 545 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 TapasService
13        extends Service
14{
15        @Nullable
16        List<Plateform> getAllPlateforms() throws ServiceException;
17
18    @Nullable
19    Plateform getPlateformById( @Nullable final Integer plateformId ) throws ServiceException;
20
21    @Nullable
22    List<Parameter> getAllParametersByPlateformId( @NotNull final Integer plateformId ) throws ServiceException;
23}
Note: See TracBrowser for help on using the repository browser.