bwLehrpool Masterserver
Manages authentication and sharing of virtual machines between participating institutions
LocalSatellite.java
Go to the documentation of this file.
1 package org.openslx.imagemaster.db.models;
2 
3 import java.security.Key;
4 import java.util.List;
5 
6 public class LocalSatellite
7 {
8  // TODO
9  public final int satelliteId = 0;
10  public final String satelliteName = "";
11  public final String organizationId = "";
12  public final List<String> addresses = null;
13 
14  // TODO
15 
16  public Key getPubkey()
17  {
18  // TODO
19  return null;
20  }
21 
22 }