src/main/java/de/uapcore/lightpit/entities/Version.java

changeset 86
0a658e53177c
parent 75
33b6843fdf8a
child 128
947d0f6a6a83
equal deleted inserted replaced
85:3d16ad54b3dc 86:0a658e53177c
39 * If we do not want versions to be ordered lexicographically we may specify an order. 39 * If we do not want versions to be ordered lexicographically we may specify an order.
40 */ 40 */
41 private int ordinal = 0; 41 private int ordinal = 0;
42 private VersionStatus status = VersionStatus.Future; 42 private VersionStatus status = VersionStatus.Future;
43 43
44 public Version(int id, Project project) { 44 public Version(int id) {
45 this.id = id; 45 this.id = id;
46 this.project = project;
47 } 46 }
48 47
49 public int getId() { 48 public int getId() {
50 return id; 49 return id;
51 } 50 }

mercurial