-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#550 Added resolving of PersonIdentifiers
- Loading branch information
Showing
2 changed files
with
67 additions
and
22 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
common/src/main/java/de/uni_jena/thunibib/his/api/v1/cs/psv/PersonIdentifier.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,23 @@ | ||
package de.uni_jena.thunibib.his.api.v1.cs.psv; | ||
|
||
import de.uni_jena.thunibib.his.api.v1.cs.sys.values.SysValue; | ||
|
||
/** | ||
* Path: <code>/api/v1/cs/psv/person/identifier | ||
* | ||
* At least one of these rights: RIGHT_CS_PSV_PERSON_VIEW_PERSON_IDENTIFIER | ||
* */ | ||
public class PersonIdentifier extends SysValue { | ||
|
||
public static String getValueParamaterName() { | ||
return "identifierValue"; | ||
} | ||
|
||
public static String getTypeParamaterName() { | ||
return "typeUniquename"; | ||
} | ||
|
||
public static String getPath() { | ||
return "cs/psv/person/identifier"; | ||
} | ||
} |
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