source: ether_ndacc/trunk/service/interface/com/ether/PlotService.java @ 106

Last change on this file since 106 was 106, checked in by rboipsl, 13 years ago

Import du projet NDACC _ module service

File size: 639 bytes
Line 
1package com.ether;
2
3import java.util.List;
4
5import org.jetbrains.annotations.NotNull;
6import org.jetbrains.annotations.Nullable;
7
8/**
9 * @author rboipsl
10 * @date 23 feb 2011
11 */
12public interface PlotService extends Service
13{   
14    @Nullable
15    List<String> getPlotsByDateByInstrument(@NotNull final String instrument, String pdate, String ft) throws ServiceException;
16    @Nullable
17    List<String> getPlotsByDateByInstrumentByStation(@NotNull final String instrument, String pdate, String ft, String station) throws ServiceException;   
18   // List<String> getLastDate(@NotNull final String instrument) throws ServiceException;
19   
20}
Note: See TracBrowser for help on using the repository browser.