| .. | .. |
|---|
| 42 | 42 | private String name; |
|---|
| 43 | 43 | private String description; |
|---|
| 44 | 44 | |
|---|
| 45 | + @Column(name = "license_filename") |
|---|
| 46 | + @JsonProperty("license_filename") |
|---|
| 47 | + private String licenseFilename; |
|---|
| 48 | + |
|---|
| 45 | 49 | @Column(name = "creation_timestamp") |
|---|
| 50 | + @JsonProperty("creation_timestamp") |
|---|
| 46 | 51 | private Date creationTimestamp; |
|---|
| 47 | 52 | |
|---|
| 48 | 53 | @JsonIgnore |
|---|
| .. | .. |
|---|
| 54 | 59 | @OneToMany(fetch = FetchType.LAZY, mappedBy = "application") |
|---|
| 55 | 60 | private Set<ApplicationMetadata> metadata; |
|---|
| 56 | 61 | |
|---|
| 57 | | - public int getId() { |
|---|
| 62 | + public Integer getId() { |
|---|
| 58 | 63 | return id; |
|---|
| 59 | 64 | } |
|---|
| 60 | 65 | |
|---|
| 61 | | - public void setId(int id) { |
|---|
| 66 | + public void setId(Integer id) { |
|---|
| 62 | 67 | this.id = id; |
|---|
| 63 | 68 | } |
|---|
| 64 | 69 | |
|---|
| .. | .. |
|---|
| 117 | 122 | |
|---|
| 118 | 123 | return (id == null ? 0 : id.hashCode()); |
|---|
| 119 | 124 | } |
|---|
| 125 | + |
|---|
| 126 | + public String getLicenseFilename() { |
|---|
| 127 | + return licenseFilename; |
|---|
| 128 | + } |
|---|
| 129 | + |
|---|
| 130 | + public void setLicenseFilename(String licenseFilename) { |
|---|
| 131 | + this.licenseFilename = licenseFilename; |
|---|
| 132 | + } |
|---|
| 120 | 133 | } |
|---|