|
From: <chr...@us...> - 2019-02-04 07:54:44
|
Revision: 220
http://sourceforge.net/p/andspidclient/code/220
Author: chris-trapani
Date: 2019-02-04 07:54:43 +0000 (Mon, 04 Feb 2019)
Log Message:
-----------
Merge pull request #8 in APPS/ands-pid-client from bugfix/EPR-5168-doi-minting-fails to master
* commit '51e3b15636ec4066a9d0243b344959fbac99d9c1':
EPR-5168 DOI minting fails. Corrected nameType constansts.
Modified Paths:
--------------
trunk/src/main/java/au/csiro/doiclient/business/Creator.java
Modified: trunk/src/main/java/au/csiro/doiclient/business/Creator.java
===================================================================
--- trunk/src/main/java/au/csiro/doiclient/business/Creator.java 2019-02-04 03:22:45 UTC (rev 219)
+++ trunk/src/main/java/au/csiro/doiclient/business/Creator.java 2019-02-04 07:54:43 UTC (rev 220)
@@ -30,12 +30,12 @@
/**
* Name type: organizational. Attribute to describe type of creator
*/
- public static final String NAME_TYPE_ORGANIZATIONAL = "organizational";
+ public static final String NAME_TYPE_ORGANIZATIONAL = "Organizational";
/**
* Name type: personal. Attribute to describe type of creator
*/
- public static final String NAME_TYPE_PERSONAL = "personal";
+ public static final String NAME_TYPE_PERSONAL = "Personal";
/**
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|