summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openslx/sat/thrift/version/Version.java
blob: dfa9353b51ea4fd565348e94a06acd4079b9a8df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.openslx.sat.thrift.version;

/**
 * This class merely contains the RPC version of the sat-server.
 * If you modify the thrift RPC in an incompatible way, bump the version number by
 * one, so connecting clients will be notified that they need to update
 * their dozentenmodul client.
 */
public class Version {
	
	public static final long MIN_VERSION = 4;

	public static final long VERSION = 5;
	
}