1 package org.minetti.astrodevice.client.business.process;
2
3 /**
4 * Process on AstroDev platform.
5 * @author Jean-Philippe MINETTI
6 */
7 public final class PlatformProcess
8 {
9
10 /**
11 * Returns the identifier of selected observing site.
12 * @return Identifier of selected observing site.
13 */
14 public Long getObservingSiteId ()
15 {
16
17 // TODO
18
19 return new Long (2);
20 }
21
22 /**
23 * Sets the identifier of selected observing site.
24 * @param observingSiteId Identifier of selected observing site.
25 */
26 public void setObservingSiteId (final long observingSiteId)
27 {
28
29 // TODO
30 System.out.println ("Sélection site d'observation n°" + observingSiteId);
31
32 }
33
34 }