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

Last change on this file since 389 was 389, checked in by rboipsl, 12 years ago
File size: 690 bytes
Line 
1package com.ether;
2
3import org.jdom.Document;
4import org.jetbrains.annotations.NotNull;
5import org.jetbrains.annotations.Nullable;
6
7import java.util.List;
8
9/**
10 * @author vmipsl
11 * @date 07 mar 2011
12 */
13public interface TapasService
14        extends Service
15{
16
17    public void createXMLRequest();
18
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;
29}
Note: See TracBrowser for help on using the repository browser.