Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
J
Java Client API
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
3
Issues
3
List
Boards
Labels
Service Desk
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Genesys PGR
Java Client API
Commits
d0adf625
Commit
d0adf625
authored
May 11, 2017
by
Matija Obreza
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MCPD v2.1 PUID
parent
c7294d17
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
0 deletions
+24
-0
src/main/java/org/genesys2/client/oauth/api/accession/AccessionJson.java
...rg/genesys2/client/oauth/api/accession/AccessionJson.java
+19
-0
src/main/java/org/genesys2/client/oauth/api/accession/Api1Constants.java
...rg/genesys2/client/oauth/api/accession/Api1Constants.java
+5
-0
No files found.
src/main/java/org/genesys2/client/oauth/api/accession/AccessionJson.java
View file @
d0adf625
...
...
@@ -31,6 +31,10 @@ public class AccessionJson {
/** The genesys id. */
private
Long
genesysId
;
/** The puid. */
@JsonProperty
(
value
=
Accession
.
PUID
)
private
String
puid
;
/** The inst code. */
@JsonProperty
(
value
=
Accession
.
INSTCODE
)
private
String
instCode
;
...
...
@@ -182,6 +186,21 @@ public class AccessionJson {
public
void
setGenesysId
(
final
Long
genesysId
)
{
this
.
genesysId
=
genesysId
;
}
/**
* @return the puid
*/
public
String
getPuid
()
{
return
puid
;
}
/**
* @param puid the puid to set
*/
public
void
setPuid
(
String
puid
)
{
this
.
puid
=
puid
;
}
/**
* Gets the inst code.
...
...
src/main/java/org/genesys2/client/oauth/api/accession/Api1Constants.java
View file @
d0adf625
...
...
@@ -27,6 +27,11 @@ public interface Api1Constants {
* The Interface Accession.
*/
public
static
interface
Accession
{
/**
* MCPDv2.1 Persistent Unique Identifier
*/
public
static
final
String
PUID
=
"puid"
;
/**
* WIEWS code of accession holding institute.
*/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment