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

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

ajout realtime ecc ohp

File size: 825 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    @Nullable
20    List<String> getPlotsByDateByInstrumentByStationByType(@NotNull final String instrument, String pdate, String ft, String station, String type) throws ServiceException;
21   
22}
Note: See TracBrowser for help on using the repository browser.