-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
67b284f
commit 40faf8f
Showing
7 changed files
with
743 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
biometric-nbi/src/main/java/dev/obrienlabs/biometric/nbi/model/DataObject.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package dev.obrienlabs.biometric.nbi.model; | ||
|
||
public class DataObject { | ||
|
||
private Long version; | ||
|
||
public Long getVersion() { | ||
return version; | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
biometric-nbi/src/main/java/dev/obrienlabs/biometric/nbi/model/IdentifiableDataObject.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package dev.obrienlabs.biometric.nbi.model; | ||
|
||
public class IdentifiableDataObject extends DataObject { | ||
|
||
private Long id; | ||
|
||
public Long getId() { | ||
return id; | ||
} | ||
public void setId(Long id) { | ||
this.id = id; | ||
} | ||
} |
Oops, something went wrong.