source: tapas/service/interface/com/ether/tapas/Atmosphere.java @ 400

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

objet Tapas entier avec sérialization

File size: 996 bytes
Line 
1package com.ether.tapas;
2
3import com.ether.Pair;
4import org.jetbrains.annotations.NotNull;
5
6import java.util.List;
7
8/**
9 * @author vmipsl
10 * @date 08 march 2012
11 */
12public class Atmosphere
13{
14    @NotNull
15    public Pair<String, Long> getReference()
16    {
17        return _reference;
18    }
19
20    public void setReference( @NotNull final Pair<String, Long> reference )
21    {
22        _reference = reference;
23    }
24
25    @NotNull
26    public List<String> getArlettyFile()
27    {
28        return _arlettyFile;
29    }
30
31    public void setArlettyFile( @NotNull final List<String> arlettyFile )
32    {
33        _arlettyFile = arlettyFile;
34    }
35
36    @NotNull
37    public List<String> getEcmwfFile()
38    {
39        return _ecmwfFile;
40    }
41
42    public void setEcmwfFile( @NotNull final List<String> ecmwfFile )
43    {
44        _ecmwfFile = ecmwfFile;
45    }
46
47    @NotNull
48    private Pair<String, Long> _reference;
49    @NotNull
50    private List<String> _arlettyFile;
51    @NotNull
52    private List<String> _ecmwfFile;
53}
Note: See TracBrowser for help on using the repository browser.