| .. | .. |
|---|
| 53 | 53 | @Column(name="secret_key") |
|---|
| 54 | 54 | private String secretKey; |
|---|
| 55 | 55 | |
|---|
| 56 | + @Column(name="custom_key") |
|---|
| 57 | + private String customKey; |
|---|
| 58 | + |
|---|
| 56 | 59 | public RegDocument() { |
|---|
| 57 | 60 | } |
|---|
| 58 | 61 | |
|---|
| .. | .. |
|---|
| 153 | 156 | this.secretKey = secretKey; |
|---|
| 154 | 157 | } |
|---|
| 155 | 158 | |
|---|
| 159 | + public String getCustomKey() { |
|---|
| 160 | + return customKey; |
|---|
| 161 | + } |
|---|
| 162 | + |
|---|
| 163 | + public void setCustomKey(String customKey) { |
|---|
| 164 | + this.customKey = customKey; |
|---|
| 165 | + } |
|---|
| 166 | + |
|---|
| 156 | 167 | @Override |
|---|
| 157 | 168 | public String toString() { |
|---|
| 158 | 169 | return "RegDocument [documentId=" + documentId + ", created=" + created + ", createdBy=" + createdBy |
|---|
| 159 | 170 | + ", modified=" + modified + ", modifiedBy=" + modifiedBy + ", fileHash=" + fileHash + ", filePath=" |
|---|
| 160 | | - + filePath + ", fileSize=" + fileSize + ", dueDate=" + dueDate + "]"; |
|---|
| 171 | + + filePath + ", fileSize=" + fileSize + ", dueDate=" + dueDate + ", customKey=" + customKey + "]"; |
|---|
| 161 | 172 | } |
|---|
| 162 | 173 | |
|---|
| 163 | 174 | } |
|---|