Skip to content

Commit

Permalink
PCDM push accomodates local schema prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
jcreel committed Sep 11, 2018
1 parent 58ebfaf commit 7d43a2d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ protected File[] getFiles(Document document) {
* @throws IOException
*/
private void updateMetadata(Document document, String itemContainerUrl) throws IOException {
String updateQuery = "PREFIX dc: <http://purl.org/dc/elements/1.1/>" + "INSERT {";
String updateQuery = "PREFIX dc: <http://purl.org/dc/elements/1.1/> PREFIX local: <http://digital.library.tamu.edu/schemas/local>" + "INSERT {";
String cleanValue = null;
for (MetadataFieldGroup group : document.getFields()) {
for (MetadataFieldValue value : group.getValues()) {
Expand Down

0 comments on commit 7d43a2d

Please sign in to comment.