rsanchez
2015-09-30 a9f3df010deef70c1e378148f008aeaa147bcf82
securis/src/main/java/net/curisit/securis/db/License.java
....@@ -70,7 +70,7 @@
7070
7171 @Id
7272 @GeneratedValue
73
- private int id;
73
+ private Integer id;
7474
7575 private String code;
7676
....@@ -147,7 +147,7 @@
147147 @JsonIgnore
148148 private List<LicenseHistory> history;
149149
150
- public int getId() {
150
+ public Integer getId() {
151151 return id;
152152 }
153153
....@@ -269,7 +269,7 @@
269269 this.email = email;
270270 }
271271
272
- public void setId(int id) {
272
+ public void setId(Integer id) {
273273 this.id = id;
274274 }
275275