Skip to content
Snippets Groups Projects
Commit f779ffea authored by mbrodhu's avatar mbrodhu
Browse files

correct datestamp for ListRecords Request in metadata paragraph

parent f1bba281
No related branches found
No related tags found
No related merge requests found
......@@ -224,7 +224,18 @@ public class RecordListDeliverer {
creators.add(responseWorkValues.getField("work.agent").getValue().toString());
}
dates.add(responseWorkValues.getField("created").getValue().toString());
String singleDate = responseWorkValues.getField("created").getValue().toString();
try {
dates.add(OAIPMHUtillities.convertDateFormat(singleDate).toXMLFormat());
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (DatatypeConfigurationException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
if(responseWorkValues.getField("work.abstract")!=null){
descriptions.add(responseWorkValues.getField("work.abstract").getValue().toString());
......
......@@ -32,7 +32,7 @@ public class OaiPmhTest{
/*@Test
@Ignore
//@Ignore
public void testListRecords() throws ParseException{
JAXBElement<OAIPMHType> r = testRequest.getRequest("ListRecords", "", "oai_dc", "", "2012-02-10T10:54:42", "2012-03-10T10:54:42", "");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment