summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openslx/sat/thrift/version/Version.java
blob: 404a01b9409b97faefa40fee1c4e5e9dde14ddcf (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 = 5;

	public static final long VERSION = 5;
	
}