diff --git a/oaipmh-core/src/main/java/info/textgrid/middleware/OAIPMHImpl.java b/oaipmh-core/src/main/java/info/textgrid/middleware/OAIPMHImpl.java
index 564caa8fc7966af7e962125f0354c2a200f5d5b7..511d43c438c5fb42c6d00b0ccf881bf5b0614041 100644
--- a/oaipmh-core/src/main/java/info/textgrid/middleware/OAIPMHImpl.java
+++ b/oaipmh-core/src/main/java/info/textgrid/middleware/OAIPMHImpl.java
@@ -53,7 +53,7 @@ public class OAIPMHImpl implements OAIPMHProducer{
 	@Override
 	@GET
 	@Path("/")
-	@Produces({ "application/xml", "text/xml" })
+	@Produces("text/xml")
 	public JAXBElement<OAIPMHType> getRequest(
 			@QueryParam("verb")  String verb,
 			@QueryParam("identifier") @DefaultValue("") String identifier,
@@ -318,7 +318,7 @@ public class OAIPMHImpl implements OAIPMHProducer{
 		
 		if(verb.equals("Identify")){
 			verbParam = VerbType.IDENTIFY;
-		}	else if(verb.equals("ListMetdataFormats")){
+		}	else if(verb.equals("ListMetadataFormats")){
 				verbParam = VerbType.LIST_METADATA_FORMATS;
 		}	else if(verb.equals("ListSets")){
 				verbParam = VerbType.LIST_SETS;
diff --git a/oaipmh-core/src/main/java/info/textgrid/middleware/OAIPMHProducer.java b/oaipmh-core/src/main/java/info/textgrid/middleware/OAIPMHProducer.java
index 8260da3b40d6cce74c1c13ce60ab77db08280a48..a2207239e9244df541a8a990e35cbbee56d9dbba 100644
--- a/oaipmh-core/src/main/java/info/textgrid/middleware/OAIPMHProducer.java
+++ b/oaipmh-core/src/main/java/info/textgrid/middleware/OAIPMHProducer.java
@@ -38,7 +38,7 @@ public interface OAIPMHProducer {
 
 	@GET
 	@Path("/")
-	@Produces({ "text/xml" })
+	@Produces("text/xml")
 	JAXBElement<OAIPMHType> getRequest(
 			@QueryParam("verb") String verb,
 			@QueryParam("identifier") @DefaultValue("") String identifier,
diff --git a/oaipmh-core/src/test/java/info/textgrid/middleware/OaiPmhTest.java b/oaipmh-core/src/test/java/info/textgrid/middleware/OaiPmhTest.java
index 4782d0f4ba34669d4058c9cd3e03c554b9e2d766..ba6d02884582b61574affbff0fef1e1b5ab16968 100644
--- a/oaipmh-core/src/test/java/info/textgrid/middleware/OaiPmhTest.java
+++ b/oaipmh-core/src/test/java/info/textgrid/middleware/OaiPmhTest.java
@@ -36,18 +36,18 @@ public class OaiPmhTest{
 		JAXBElement<OAIPMHType> r = testRequest.getRequest("ListRecords", "", "oai_dc", "", "2012-02-10T10:54:42", "2012-03-10T10:54:42", "");
 		JAXB.marshal(r, System.out);
 		System.out.println("-----------------------------------\n");
-	}
+	}*/
 	
 	
 	@Test
 	public void testListMetadataFormats(){
 		
-		JAXBElement<OAIPMHType> r = testRequest.getRequest("ListMetdataFormats", "wr67.0", "", "", "", "", "");
+		JAXBElement<OAIPMHType> r = testRequest.getRequest("ListMetadataFormats", "wr67.0", "", "", "", "", "");
 		JAXB.marshal(r, System.out);
 		System.out.println("-----------------------------------\n");
-	}*/
+	}
 	
-	@Test
+	/*@Test
 	public void testDateNow() throws DatatypeConfigurationException{
 		System.out.println("---------------Now Version-----------------");		
 		XMLGregorianCalendar nowTest = OAIPMHUtillities.getXMLGregorianCalendarNow();
@@ -93,7 +93,7 @@ public class OaiPmhTest{
 		System.out.println("-----------------------------------\n");
 	}*/
 	
-	@Test
+	/*@Test
 	public void testGetRequestIdentify(){
 		
 		System.out.println("Test for the verb \"Identify\" with succesfull response");
@@ -102,7 +102,7 @@ public class OaiPmhTest{
 		System.out.println("-----------------------------------\n");
 	}
 	
-	@Test
+	/*@Test
 	public void testGetRequestIdentifyVerbError(){
 		JAXBElement<OAIPMHType> t = testRequest.getRequest("Identify", "", "", "", "", "", "");
 		JAXB.marshal(t, System.out);
diff --git a/oaipmh-core/target/classes/info/textgrid/middleware/OAIPMHImpl.class b/oaipmh-core/target/classes/info/textgrid/middleware/OAIPMHImpl.class
index 53d43e34fe983e7914e3f904c89c7507cb2d991d..7d95741531708ce4156e491d810f20e8bb291e9e 100644
Binary files a/oaipmh-core/target/classes/info/textgrid/middleware/OAIPMHImpl.class and b/oaipmh-core/target/classes/info/textgrid/middleware/OAIPMHImpl.class differ
diff --git a/oaipmh-core/target/classes/info/textgrid/middleware/OAI_ESClient.class b/oaipmh-core/target/classes/info/textgrid/middleware/OAI_ESClient.class
index 4261e770fe54f78530490bda91652db0c2b09c6a..e28af02b9c744a4c529682a62d9dd8740a9dcfd8 100644
Binary files a/oaipmh-core/target/classes/info/textgrid/middleware/OAI_ESClient.class and b/oaipmh-core/target/classes/info/textgrid/middleware/OAI_ESClient.class differ
diff --git a/oaipmh-core/target/classes/info/textgrid/middleware/Rest.class b/oaipmh-core/target/classes/info/textgrid/middleware/Rest.class
index af6c7303b62c682e123d8aa18bef94610df7cba4..4dfb45d4c3876b5bd8a6f161d8c647f173f53dbf 100644
Binary files a/oaipmh-core/target/classes/info/textgrid/middleware/Rest.class and b/oaipmh-core/target/classes/info/textgrid/middleware/Rest.class differ
diff --git a/oaipmh-core/target/classes/info/textgrid/middleware/TGConstants.class b/oaipmh-core/target/classes/info/textgrid/middleware/TGConstants.class
index 2b70a08ecbaac2dbb586faf432b73df3e06c2c50..754d84852ab564787962c3f295f3a0d8a5012cc3 100644
Binary files a/oaipmh-core/target/classes/info/textgrid/middleware/TGConstants.class and b/oaipmh-core/target/classes/info/textgrid/middleware/TGConstants.class differ
diff --git a/oaipmh-core/target/classes/info/textgrid/middleware/oaidc/OaiDcType.class b/oaipmh-core/target/classes/info/textgrid/middleware/oaidc/OaiDcType.class
index 6ff1e12561fdb2afa00ad996764ab361097995f9..215cd4863732cc5175f5f17d60601e35df224b92 100644
Binary files a/oaipmh-core/target/classes/info/textgrid/middleware/oaidc/OaiDcType.class and b/oaipmh-core/target/classes/info/textgrid/middleware/oaidc/OaiDcType.class differ
diff --git a/oaipmh-core/target/classes/info/textgrid/middleware/oaidc/ObjectFactory.class b/oaipmh-core/target/classes/info/textgrid/middleware/oaidc/ObjectFactory.class
index c5661a80668046763b31f89121dbbbb40ae41bb6..dc603b83f46fe58b430adbd55d53533b2000dc80 100644
Binary files a/oaipmh-core/target/classes/info/textgrid/middleware/oaidc/ObjectFactory.class and b/oaipmh-core/target/classes/info/textgrid/middleware/oaidc/ObjectFactory.class differ
diff --git a/oaipmh-core/target/classes/info/textgrid/middleware/oaipmh/OaiDcType.class b/oaipmh-core/target/classes/info/textgrid/middleware/oaipmh/OaiDcType.class
index 14cfd5c77746674cc7c72e96d7eb942bc1bf0dc0..c1c9a6360561d3ca4ad90e74fda7dd0b940aa164 100644
Binary files a/oaipmh-core/target/classes/info/textgrid/middleware/oaipmh/OaiDcType.class and b/oaipmh-core/target/classes/info/textgrid/middleware/oaipmh/OaiDcType.class differ
diff --git a/oaipmh-core/target/classes/info/textgrid/middleware/oaipmh/ObjectFactory.class b/oaipmh-core/target/classes/info/textgrid/middleware/oaipmh/ObjectFactory.class
index e0a1101eee89050c75abf0d442b6b5cc8c94c3f7..de62d87a30c264128fae951c1685d04aa09781aa 100644
Binary files a/oaipmh-core/target/classes/info/textgrid/middleware/oaipmh/ObjectFactory.class and b/oaipmh-core/target/classes/info/textgrid/middleware/oaipmh/ObjectFactory.class differ
diff --git a/oaipmh-core/target/classes/info/textgrid/middleware/oaipmh/package-info.class b/oaipmh-core/target/classes/info/textgrid/middleware/oaipmh/package-info.class
index 37728a0e3fd10ce1888fbbc421f82d97e4759ba3..06ce6f0dc51b516089eabbdc3dd81a916e341040 100644
Binary files a/oaipmh-core/target/classes/info/textgrid/middleware/oaipmh/package-info.class and b/oaipmh-core/target/classes/info/textgrid/middleware/oaipmh/package-info.class differ
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/AboutType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/AboutType.java
index b211623b33e787b0b799a435605c086a3110deb4..e41210c92bfd417a3c3d415d05dd856a5483872b 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/AboutType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/AboutType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:23 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:53 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/DeletedRecordType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/DeletedRecordType.java
index 192491f4a03d387669d6977ceac904070bced210..646284419f1d0a9cba1c7dd51ca5b308ef4db3d0 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/DeletedRecordType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/DeletedRecordType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:23 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:53 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/DescriptionType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/DescriptionType.java
index 9a7cea98f78bac7dcfeb90f14642aa2eec7f8989..ff64fb9fca7571bc7aec6dcaec1c7f4c713a222f 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/DescriptionType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/DescriptionType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:23 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:53 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/ElementType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/ElementType.java
index d1c42c8a502156c9dba9abe59c2a738f9467a580..cbbcd023374cafa63e298d73d3e2d54a39a479d0 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/ElementType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/ElementType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:23 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:53 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/GetRecordType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/GetRecordType.java
index 7530b619c2d2f49d9be8e44114a582a5a8609f8c..4aa333aff0b4eb87c31f7b2ad22b723f1c90a33d 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/GetRecordType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/GetRecordType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:23 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:53 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/GranularityType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/GranularityType.java
index b5f52015ce10341ea3053fa2d57d22a5a475a085..a090ba749525feda236dcb207da866c7f7e72eb2 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/GranularityType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/GranularityType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:23 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:53 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/HeaderType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/HeaderType.java
index fb05822dd411561d6d974921f67a1ca1c6dc1498..5dfb988787d2bb15f1430fad8587ec153bbb5e74 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/HeaderType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/HeaderType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:23 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:53 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/IdentifyType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/IdentifyType.java
index 4c836891eab72d814457b93fe8f542eb85024133..2e11f1beb72168970a0c720109c49e34829943a0 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/IdentifyType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/IdentifyType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:23 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:53 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/ListIdentifiersType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/ListIdentifiersType.java
index 9b0cabecbfbf8272db8464d7b303a306515569d9..6f18ae183e53ad3b60adcb26b55b5ffdc5b0d921 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/ListIdentifiersType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/ListIdentifiersType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:23 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:53 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/ListMetadataFormatsType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/ListMetadataFormatsType.java
index 85e19bdba53f330f161815334139f36e832ed0d9..13df8567fad2107c0b63fd548ff3d1adc5d4a823 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/ListMetadataFormatsType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/ListMetadataFormatsType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:23 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:53 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/ListRecordsType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/ListRecordsType.java
index 142d08fd3ac45bcdf3c78cd5074aa6316633b476..3097988970d71e551c15ee7944549fbfbbc06c0b 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/ListRecordsType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/ListRecordsType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:23 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:53 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/ListSetsType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/ListSetsType.java
index c0fad7a3098d74ac62aa283208634a01d8f4c8c5..9defc8da6ace0627c602a6991c04c41613095cab 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/ListSetsType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/ListSetsType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:23 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:53 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/MetadataFormatType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/MetadataFormatType.java
index c3fa12a7293a3062a6aff404f23eb26341a8bcdf..38507d55720c178f960ac6c29eecbc4ac35f87ee 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/MetadataFormatType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/MetadataFormatType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:23 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:53 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/MetadataType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/MetadataType.java
index 9b13582995341a98d0b7f5f7234c00bd24550c81..2cc14743deace7140e136a2784ef4b1b48ff05bc 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/MetadataType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/MetadataType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:23 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:53 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/OAIPMHType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/OAIPMHType.java
index 0e3ac31022504b62376889ebb7138daf5a58ceaf..39492c6cb2b4a876eab5fdf3292caf70222d6554 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/OAIPMHType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/OAIPMHType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:23 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:53 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/OAIPMHerrorType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/OAIPMHerrorType.java
index 9427f0ce782e571142137cd40c16e6b6d927a02f..42be0ee3541cc00efa7315b723c873af5ab1affe 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/OAIPMHerrorType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/OAIPMHerrorType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:23 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:53 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/OAIPMHerrorcodeType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/OAIPMHerrorcodeType.java
index e78e3bd5e4b921f29705ea80e27bcbaa2f73ab0f..9bc62b89cc5d5b2a102d6ed1fed206f29a17bca0 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/OAIPMHerrorcodeType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/OAIPMHerrorcodeType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:23 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:53 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/OaiDcType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/OaiDcType.java
index 326b5b64a0e3f160f889bc2290cb7ba2915d994e..bceb001ef29835eebdde3437be970fa52dce8f13 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/OaiDcType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/OaiDcType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:23 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:53 PM MEZ 
 //
 
 
@@ -58,21 +58,21 @@ import javax.xml.bind.annotation.XmlType;
 public class OaiDcType {
 
     @XmlElementRefs({
-        @XmlElementRef(name = "subject", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
-        @XmlElementRef(name = "date", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
-        @XmlElementRef(name = "creator", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
-        @XmlElementRef(name = "source", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
-        @XmlElementRef(name = "identifier", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
-        @XmlElementRef(name = "title", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
         @XmlElementRef(name = "relation", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
-        @XmlElementRef(name = "rights", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
         @XmlElementRef(name = "format", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
         @XmlElementRef(name = "language", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
-        @XmlElementRef(name = "publisher", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
         @XmlElementRef(name = "type", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
-        @XmlElementRef(name = "description", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
+        @XmlElementRef(name = "subject", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
+        @XmlElementRef(name = "title", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
+        @XmlElementRef(name = "creator", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
+        @XmlElementRef(name = "publisher", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
+        @XmlElementRef(name = "date", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
+        @XmlElementRef(name = "rights", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
+        @XmlElementRef(name = "contributor", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
         @XmlElementRef(name = "coverage", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
-        @XmlElementRef(name = "contributor", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class)
+        @XmlElementRef(name = "source", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
+        @XmlElementRef(name = "identifier", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
+        @XmlElementRef(name = "description", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class)
     })
     protected List<JAXBElement<ElementType>> titleOrCreatorOrSubject;
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/ObjectFactory.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/ObjectFactory.java
index 99032ab2c6f28692e0e82816d3a865585210b244..5573981ac6a0b1d839e29325fd5a3bc4aae2cefa 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/ObjectFactory.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/ObjectFactory.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:23 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:53 PM MEZ 
 //
 
 
@@ -57,19 +57,27 @@ public class ObjectFactory {
     }
 
     /**
-     * Create an instance of {@link ElementType }
+     * Create an instance of {@link OaiDcType }
      * 
      */
-    public ElementType createElementType() {
-        return new ElementType();
+    public OaiDcType createOaiDcType() {
+        return new OaiDcType();
     }
 
     /**
-     * Create an instance of {@link IdentifyType }
+     * Create an instance of {@link AboutType }
      * 
      */
-    public IdentifyType createIdentifyType() {
-        return new IdentifyType();
+    public AboutType createAboutType() {
+        return new AboutType();
+    }
+
+    /**
+     * Create an instance of {@link OAIPMHerrorType }
+     * 
+     */
+    public OAIPMHerrorType createOAIPMHerrorType() {
+        return new OAIPMHerrorType();
     }
 
     /**
@@ -81,35 +89,35 @@ public class ObjectFactory {
     }
 
     /**
-     * Create an instance of {@link ResumptionTokenType }
+     * Create an instance of {@link ElementType }
      * 
      */
-    public ResumptionTokenType createResumptionTokenType() {
-        return new ResumptionTokenType();
+    public ElementType createElementType() {
+        return new ElementType();
     }
 
     /**
-     * Create an instance of {@link GetRecordType }
+     * Create an instance of {@link ListIdentifiersType }
      * 
      */
-    public GetRecordType createGetRecordType() {
-        return new GetRecordType();
+    public ListIdentifiersType createListIdentifiersType() {
+        return new ListIdentifiersType();
     }
 
     /**
-     * Create an instance of {@link SetType }
+     * Create an instance of {@link ListSetsType }
      * 
      */
-    public SetType createSetType() {
-        return new SetType();
+    public ListSetsType createListSetsType() {
+        return new ListSetsType();
     }
 
     /**
-     * Create an instance of {@link ListRecordsType }
+     * Create an instance of {@link SetType }
      * 
      */
-    public ListRecordsType createListRecordsType() {
-        return new ListRecordsType();
+    public SetType createSetType() {
+        return new SetType();
     }
 
     /**
@@ -121,11 +129,11 @@ public class ObjectFactory {
     }
 
     /**
-     * Create an instance of {@link OaiDcType }
+     * Create an instance of {@link RecordType }
      * 
      */
-    public OaiDcType createOaiDcType() {
-        return new OaiDcType();
+    public RecordType createRecordType() {
+        return new RecordType();
     }
 
     /**
@@ -136,14 +144,6 @@ public class ObjectFactory {
         return new MetadataType();
     }
 
-    /**
-     * Create an instance of {@link MetadataFormatType }
-     * 
-     */
-    public MetadataFormatType createMetadataFormatType() {
-        return new MetadataFormatType();
-    }
-
     /**
      * Create an instance of {@link HeaderType }
      * 
@@ -153,59 +153,59 @@ public class ObjectFactory {
     }
 
     /**
-     * Create an instance of {@link ListMetadataFormatsType }
+     * Create an instance of {@link GetRecordType }
      * 
      */
-    public ListMetadataFormatsType createListMetadataFormatsType() {
-        return new ListMetadataFormatsType();
+    public GetRecordType createGetRecordType() {
+        return new GetRecordType();
     }
 
     /**
-     * Create an instance of {@link AboutType }
+     * Create an instance of {@link ResumptionTokenType }
      * 
      */
-    public AboutType createAboutType() {
-        return new AboutType();
+    public ResumptionTokenType createResumptionTokenType() {
+        return new ResumptionTokenType();
     }
 
     /**
-     * Create an instance of {@link OAIPMHerrorType }
+     * Create an instance of {@link ListMetadataFormatsType }
      * 
      */
-    public OAIPMHerrorType createOAIPMHerrorType() {
-        return new OAIPMHerrorType();
+    public ListMetadataFormatsType createListMetadataFormatsType() {
+        return new ListMetadataFormatsType();
     }
 
     /**
-     * Create an instance of {@link OAIPMHType }
+     * Create an instance of {@link ListRecordsType }
      * 
      */
-    public OAIPMHType createOAIPMHType() {
-        return new OAIPMHType();
+    public ListRecordsType createListRecordsType() {
+        return new ListRecordsType();
     }
 
     /**
-     * Create an instance of {@link RecordType }
+     * Create an instance of {@link MetadataFormatType }
      * 
      */
-    public RecordType createRecordType() {
-        return new RecordType();
+    public MetadataFormatType createMetadataFormatType() {
+        return new MetadataFormatType();
     }
 
     /**
-     * Create an instance of {@link ListSetsType }
+     * Create an instance of {@link IdentifyType }
      * 
      */
-    public ListSetsType createListSetsType() {
-        return new ListSetsType();
+    public IdentifyType createIdentifyType() {
+        return new IdentifyType();
     }
 
     /**
-     * Create an instance of {@link ListIdentifiersType }
+     * Create an instance of {@link OAIPMHType }
      * 
      */
-    public ListIdentifiersType createListIdentifiersType() {
-        return new ListIdentifiersType();
+    public OAIPMHType createOAIPMHType() {
+        return new OAIPMHType();
     }
 
     /**
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/RecordType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/RecordType.java
index 30cfc96adab1e1eb7de853d8dbe047164ef4b9b9..e414d29789de72019d98cb46dd569909c9680928 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/RecordType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/RecordType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:23 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:53 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/RequestType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/RequestType.java
index e32b557afc1787e1362681647d8f9dd67e8502b9..199c6d2c0be435f470885e7f69837acdddcb03b1 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/RequestType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/RequestType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:23 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:53 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/ResumptionTokenType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/ResumptionTokenType.java
index 9404f2fe614adf281a9251eae0c129b071345e07..e80cc7df4cd009b772e4c095fa745b721f0b57ff 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/ResumptionTokenType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/ResumptionTokenType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:23 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:53 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/SetType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/SetType.java
index 7012cf7bac31aa8f93e1f0e93f60120a30adde05..deb49f57da2ee02f5530f4641042273f723a3b80 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/SetType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/SetType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:23 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:53 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/StatusType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/StatusType.java
index 4b9f5b8c8db90ec2d27e29658867cad7cd614a89..3b5dd23ec94c0ae0058d5a00ab57710e0b97053f 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/StatusType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/StatusType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:23 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:53 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/VerbType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/VerbType.java
index c7439c97d96f4de64479bf467f0c67fdfd629a18..23d0ea6415b14288d106879dac479f0f7f27758e 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/VerbType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/VerbType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:23 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:53 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/package-info.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/package-info.java
index 3034f2dde5fd1263d659ef2e5def3f6da78b4287..2090e997a370c6546de050ec3d42a758039ec31d 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/package-info.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaidc/package-info.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:23 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:53 PM MEZ 
 //
 
 @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.openarchives.org/OAI/2.0/")
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/AboutType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/AboutType.java
index 0f2a976cff319fee769cf68673a78ce0ee56775e..d5ff4c86d9fd51e04e460de6ea68c9fe30785f80 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/AboutType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/AboutType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:21 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:52 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/DeletedRecordType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/DeletedRecordType.java
index 650026e7eb3b978469e67c03fb2d74e1fe8344f8..bbc9c21fcb35cad32a3ef1b6e84e44c4c8b9d6a0 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/DeletedRecordType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/DeletedRecordType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:21 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:52 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/DescriptionType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/DescriptionType.java
index 265ce23fc87c4c4147ec783690d0350464b218f1..2c3ea472df7d3d0a74a4b04de5d8069d8b5d0bf4 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/DescriptionType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/DescriptionType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:21 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:52 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/ElementType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/ElementType.java
index 43fbecb4b281a95cdce5755c5169e7ca45a6fd80..1a7a990e2c5c1da68bde913dc593621480a6bbbb 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/ElementType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/ElementType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:21 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:52 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/GetRecordType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/GetRecordType.java
index 7b8c31a490bafe77fe23867678a65fec2da3521e..c2aa2d405069a8c0bbc52e077c04a269213a2049 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/GetRecordType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/GetRecordType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:21 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:52 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/GranularityType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/GranularityType.java
index 8293d895875769b042f62d253fd04474b1cd1ba1..dcd7084d46beb163c56becb23953d2ec00aa9aa2 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/GranularityType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/GranularityType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:21 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:52 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/HeaderType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/HeaderType.java
index 238bbd5cbfeb11613dac6dd8e3f00442ee349208..1187f6571be6dd83472ce03e8aab57598eb2186f 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/HeaderType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/HeaderType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:21 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:52 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/IdentifyType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/IdentifyType.java
index 7aebc0e47d6a7bb4e1512b65a917acacaf25db1d..ac2921cb03526619f8f130e4ff6d0b3a3b5af434 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/IdentifyType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/IdentifyType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:21 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:52 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/ListIdentifiersType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/ListIdentifiersType.java
index 162e7d8c661757f37264e1fc8edba73faf46faf7..42af51e7c979f64727f404415ed76c5936eb513d 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/ListIdentifiersType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/ListIdentifiersType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:21 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:52 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/ListMetadataFormatsType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/ListMetadataFormatsType.java
index fd5c32171d1deda40bbc884202e8e2dd3bda9a21..b20d72d488422a80414202ac733ee3affbf389dc 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/ListMetadataFormatsType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/ListMetadataFormatsType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:21 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:52 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/ListRecordsType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/ListRecordsType.java
index ea69e785f950e0e23477183cfd0c225a30e7de5c..220117b96244d6dee4445992c27d191acc7f73a1 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/ListRecordsType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/ListRecordsType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:21 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:52 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/ListSetsType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/ListSetsType.java
index f45fd7b33bf727b73f9dcd4459fcb5c3c9a2fd9f..ba7818b46778481ccd2ff0ea2f4bc7aeaa589d86 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/ListSetsType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/ListSetsType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:21 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:52 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/MetadataFormatType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/MetadataFormatType.java
index 7a8f43fd71f516e279f1e5b304bec56ef6efb4f6..3dc6b41f10b4fd8234171640a74acac37c241994 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/MetadataFormatType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/MetadataFormatType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:21 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:52 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/MetadataType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/MetadataType.java
index 5c4b12f48bc19841fc101bbe554c19cede0c6eff..49f33540bb03fcd27c8094cb90c71407e74c51b1 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/MetadataType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/MetadataType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:21 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:52 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/OAIPMHType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/OAIPMHType.java
index cc87c2ccdac7aecd228878a9a0d4f5d4e6e764eb..d4c0bce0bb2644f6ce1e0c646a20ad5135ddae70 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/OAIPMHType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/OAIPMHType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:21 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:52 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/OAIPMHerrorType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/OAIPMHerrorType.java
index 8d05f6608d8851e4aacf801f6aacf432cfcaa1ac..590e4f4fbb793f151cfd0e33b46321d218fc9c36 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/OAIPMHerrorType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/OAIPMHerrorType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:21 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:52 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/OAIPMHerrorcodeType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/OAIPMHerrorcodeType.java
index 7c043b71d9192ef0599b6b170d7cd37b8a703de3..50f39dcee1977b9cecd9de846632478bedd0b030 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/OAIPMHerrorcodeType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/OAIPMHerrorcodeType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:21 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:52 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/OaiDcType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/OaiDcType.java
index 3ad561115a0c8f5521f16cf2f08a92ae995e9f6c..539a38ab026f4bdd6074f2b2b330edce3d5251b9 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/OaiDcType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/OaiDcType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:21 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:52 PM MEZ 
 //
 
 
@@ -58,21 +58,21 @@ import javax.xml.bind.annotation.XmlType;
 public class OaiDcType {
 
     @XmlElementRefs({
-        @XmlElementRef(name = "date", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
-        @XmlElementRef(name = "source", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
         @XmlElementRef(name = "description", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
-        @XmlElementRef(name = "type", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
         @XmlElementRef(name = "identifier", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
-        @XmlElementRef(name = "format", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
-        @XmlElementRef(name = "publisher", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
-        @XmlElementRef(name = "title", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
-        @XmlElementRef(name = "coverage", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
-        @XmlElementRef(name = "relation", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
+        @XmlElementRef(name = "subject", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
         @XmlElementRef(name = "language", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
+        @XmlElementRef(name = "relation", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
         @XmlElementRef(name = "rights", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
+        @XmlElementRef(name = "source", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
+        @XmlElementRef(name = "title", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
         @XmlElementRef(name = "contributor", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
+        @XmlElementRef(name = "format", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
+        @XmlElementRef(name = "publisher", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
         @XmlElementRef(name = "creator", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
-        @XmlElementRef(name = "subject", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class)
+        @XmlElementRef(name = "date", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
+        @XmlElementRef(name = "coverage", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class),
+        @XmlElementRef(name = "type", namespace = "http://purl.org/dc/elements/1.1/", type = JAXBElement.class)
     })
     protected List<JAXBElement<ElementType>> titleOrCreatorOrSubject;
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/ObjectFactory.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/ObjectFactory.java
index 73cc59e8ad9918aad07513f47b33fd585292b13e..34bb4a98dff308934b69001943b45eec9e694b57 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/ObjectFactory.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/ObjectFactory.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:21 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:52 PM MEZ 
 //
 
 
@@ -57,59 +57,59 @@ public class ObjectFactory {
     }
 
     /**
-     * Create an instance of {@link ListRecordsType }
+     * Create an instance of {@link ListMetadataFormatsType }
      * 
      */
-    public ListRecordsType createListRecordsType() {
-        return new ListRecordsType();
+    public ListMetadataFormatsType createListMetadataFormatsType() {
+        return new ListMetadataFormatsType();
     }
 
     /**
-     * Create an instance of {@link DescriptionType }
+     * Create an instance of {@link ResumptionTokenType }
      * 
      */
-    public DescriptionType createDescriptionType() {
-        return new DescriptionType();
+    public ResumptionTokenType createResumptionTokenType() {
+        return new ResumptionTokenType();
     }
 
     /**
-     * Create an instance of {@link RecordType }
+     * Create an instance of {@link OaiDcType }
      * 
      */
-    public RecordType createRecordType() {
-        return new RecordType();
+    public OaiDcType createOaiDcType() {
+        return new OaiDcType();
     }
 
     /**
-     * Create an instance of {@link MetadataFormatType }
+     * Create an instance of {@link IdentifyType }
      * 
      */
-    public MetadataFormatType createMetadataFormatType() {
-        return new MetadataFormatType();
+    public IdentifyType createIdentifyType() {
+        return new IdentifyType();
     }
 
     /**
-     * Create an instance of {@link HeaderType }
+     * Create an instance of {@link ListSetsType }
      * 
      */
-    public HeaderType createHeaderType() {
-        return new HeaderType();
+    public ListSetsType createListSetsType() {
+        return new ListSetsType();
     }
 
     /**
-     * Create an instance of {@link ElementType }
+     * Create an instance of {@link AboutType }
      * 
      */
-    public ElementType createElementType() {
-        return new ElementType();
+    public AboutType createAboutType() {
+        return new AboutType();
     }
 
     /**
-     * Create an instance of {@link ListSetsType }
+     * Create an instance of {@link OAIPMHerrorType }
      * 
      */
-    public ListSetsType createListSetsType() {
-        return new ListSetsType();
+    public OAIPMHerrorType createOAIPMHerrorType() {
+        return new OAIPMHerrorType();
     }
 
     /**
@@ -121,11 +121,11 @@ public class ObjectFactory {
     }
 
     /**
-     * Create an instance of {@link AboutType }
+     * Create an instance of {@link RequestType }
      * 
      */
-    public AboutType createAboutType() {
-        return new AboutType();
+    public RequestType createRequestType() {
+        return new RequestType();
     }
 
     /**
@@ -137,75 +137,75 @@ public class ObjectFactory {
     }
 
     /**
-     * Create an instance of {@link OAIPMHerrorType }
+     * Create an instance of {@link SetType }
      * 
      */
-    public OAIPMHerrorType createOAIPMHerrorType() {
-        return new OAIPMHerrorType();
+    public SetType createSetType() {
+        return new SetType();
     }
 
     /**
-     * Create an instance of {@link MetadataType }
+     * Create an instance of {@link DescriptionType }
      * 
      */
-    public MetadataType createMetadataType() {
-        return new MetadataType();
+    public DescriptionType createDescriptionType() {
+        return new DescriptionType();
     }
 
     /**
-     * Create an instance of {@link RequestType }
+     * Create an instance of {@link ListRecordsType }
      * 
      */
-    public RequestType createRequestType() {
-        return new RequestType();
+    public ListRecordsType createListRecordsType() {
+        return new ListRecordsType();
     }
 
     /**
-     * Create an instance of {@link ListMetadataFormatsType }
+     * Create an instance of {@link MetadataFormatType }
      * 
      */
-    public ListMetadataFormatsType createListMetadataFormatsType() {
-        return new ListMetadataFormatsType();
+    public MetadataFormatType createMetadataFormatType() {
+        return new MetadataFormatType();
     }
 
     /**
-     * Create an instance of {@link SetType }
+     * Create an instance of {@link ListIdentifiersType }
      * 
      */
-    public SetType createSetType() {
-        return new SetType();
+    public ListIdentifiersType createListIdentifiersType() {
+        return new ListIdentifiersType();
     }
 
     /**
-     * Create an instance of {@link ResumptionTokenType }
+     * Create an instance of {@link ElementType }
      * 
      */
-    public ResumptionTokenType createResumptionTokenType() {
-        return new ResumptionTokenType();
+    public ElementType createElementType() {
+        return new ElementType();
     }
 
     /**
-     * Create an instance of {@link ListIdentifiersType }
+     * Create an instance of {@link RecordType }
      * 
      */
-    public ListIdentifiersType createListIdentifiersType() {
-        return new ListIdentifiersType();
+    public RecordType createRecordType() {
+        return new RecordType();
     }
 
     /**
-     * Create an instance of {@link IdentifyType }
+     * Create an instance of {@link HeaderType }
      * 
      */
-    public IdentifyType createIdentifyType() {
-        return new IdentifyType();
+    public HeaderType createHeaderType() {
+        return new HeaderType();
     }
 
     /**
-     * Create an instance of {@link OaiDcType }
+     * Create an instance of {@link MetadataType }
      * 
      */
-    public OaiDcType createOaiDcType() {
-        return new OaiDcType();
+    public MetadataType createMetadataType() {
+        return new MetadataType();
     }
 
     /**
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/RecordType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/RecordType.java
index d66c4eed35bba6f8a51e5c18e8dcc976b3aa5761..4748a330632d2ed4e666f2feb3a2478b3fc25c95 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/RecordType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/RecordType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:21 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:52 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/RequestType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/RequestType.java
index 23ef8a6d747e808a0f25c8bfa96d2f91183f3b1b..f641e57fe030c65a57918dc0556d31f0d12cf24e 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/RequestType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/RequestType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:21 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:52 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/ResumptionTokenType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/ResumptionTokenType.java
index 2b6dfc813db49467680d5da989f749a6a9103105..ed4e1b6fe75e3c95ec47d92492dfdc29ac6b484a 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/ResumptionTokenType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/ResumptionTokenType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:21 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:52 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/SetType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/SetType.java
index 656c187a06feeea2b3b673fc31968f68558d849b..eae858e7d68174b0c9fb438bf0a046f4061c72c7 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/SetType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/SetType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:21 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:52 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/StatusType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/StatusType.java
index f6623eaf6f33e8e57edceddfd9b00159d2893999..acd53b9ee6532d832b7de7e8508f694b19e59455 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/StatusType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/StatusType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:21 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:52 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/VerbType.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/VerbType.java
index 6c5643db9c97778f1f2891f44b6701bc59b70527..b899a3027103882c2c1eb419ae161f9ea6f732a7 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/VerbType.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/VerbType.java
@@ -2,7 +2,7 @@
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
-// Generated on: 2014.03.11 at 10:36:21 AM MEZ 
+// Generated on: 2014.03.11 at 04:01:52 PM MEZ 
 //
 
 
diff --git a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/package-info.java b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/package-info.java
index f75b10049d77ce53e67e41b46bd1bcb3631b4434..fa0129771663a62d30f479f4ac1a5468b8ba6fa6 100644
--- a/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/package-info.java
+++ b/oaipmh-core/target/generated-sources/jaxb/info/textgrid/middleware/oaipmh/package-info.java
@@ -1,3 +1,4 @@
+//
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
 // Any modifications to this file will be lost upon recompilation of the source schema. 
@@ -7,9 +8,9 @@
 @javax.xml.bind.annotation.XmlSchema(namespace = "http://www.openarchives.org/OAI/2.0/",
 
 xmlns = {   
-    @XmlNs(namespaceURI = "http://purl.org/dc/elements/1.1/", prefix = "dc"),  
-    @XmlNs(namespaceURI = "http://www.openarchives.org/OAI/2.0/oai_dc/", prefix = "oai-dc"),
-    @XmlNs(namespaceURI = "http://www.openarchives.org/OAI/2.0/", prefix = "oaipmh") 
+	@XmlNs(namespaceURI = "http://purl.org/dc/elements/1.1/", prefix = "dc"),  
+    @XmlNs(namespaceURI = "http://www.openarchives.org/OAI/2.0/oai_dc/", prefix = "oai_dc"),
+    //@XmlNs(namespaceURI = "http://www.openarchives.org/OAI/2.0/", prefix = "oaipmh") 
 } 
 )
 package info.textgrid.middleware.oaipmh;
diff --git a/oaipmh-core/target/maven-archiver/pom.properties b/oaipmh-core/target/maven-archiver/pom.properties
index 3d8b13c9f4bb9b815fbf6b9dbed83fbdfe0c9770..67580881a1e22b1e4f166d01ae22b9dbbdabcea4 100644
--- a/oaipmh-core/target/maven-archiver/pom.properties
+++ b/oaipmh-core/target/maven-archiver/pom.properties
@@ -1,5 +1,5 @@
 #Generated by Maven
-#Tue Mar 11 10:36:27 CET 2014
+#Tue Mar 11 16:01:57 CET 2014
 version=1.0-SNAPSHOT
 groupId=info.textgrid.middleware
 artifactId=oaipmh-core
diff --git a/oaipmh-core/target/oaipmh-core-1.0-SNAPSHOT.jar b/oaipmh-core/target/oaipmh-core-1.0-SNAPSHOT.jar
index 21146289f41f05954df60843181ffd1eddd139e3..ad41dbdbaaefc07393c1257089627c5c515c80e4 100644
Binary files a/oaipmh-core/target/oaipmh-core-1.0-SNAPSHOT.jar and b/oaipmh-core/target/oaipmh-core-1.0-SNAPSHOT.jar differ
diff --git a/oaipmh-core/target/surefire-reports/TEST-info.textgrid.middleware.OaiPmhTest.xml b/oaipmh-core/target/surefire-reports/TEST-info.textgrid.middleware.OaiPmhTest.xml
index 39cacb3baf7b73d9e4115412283250f6047ce0b5..244dda95ddf3de2bf556785b43f9550620328df7 100644
--- a/oaipmh-core/target/surefire-reports/TEST-info.textgrid.middleware.OaiPmhTest.xml
+++ b/oaipmh-core/target/surefire-reports/TEST-info.textgrid.middleware.OaiPmhTest.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8" ?>
-<testsuite failures="0" time="1.356" errors="0" skipped="0" tests="2" name="info.textgrid.middleware.OaiPmhTest">
+<testsuite failures="0" time="1.084" errors="0" skipped="0" tests="1" name="info.textgrid.middleware.OaiPmhTest">
   <properties>
     <property name="java.runtime.name" value="OpenJDK Runtime Environment"/>
     <property name="sun.boot.library.path" value="/usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64"/>
@@ -41,7 +41,7 @@
     <property name="java.vm.specification.version" value="1.7"/>
     <property name="sun.arch.data.model" value="64"/>
     <property name="java.home" value="/usr/lib/jvm/java-7-openjdk-amd64/jre"/>
-    <property name="sun.java.command" value="org.codehaus.plexus.classworlds.launcher.Launcher clean package"/>
+    <property name="sun.java.command" value="org.codehaus.plexus.classworlds.launcher.Launcher package"/>
     <property name="java.specification.vendor" value="Oracle Corporation"/>
     <property name="user.language" value="de"/>
     <property name="awt.toolkit" value="sun.awt.X11.XToolkit"/>
@@ -59,6 +59,5 @@
     <property name="sun.desktop" value="gnome"/>
     <property name="sun.cpu.isalist" value=""/>
   </properties>
-  <testcase time="0.001" classname="info.textgrid.middleware.OaiPmhTest" name="testListIdentifiers"/>
-  <testcase time="0.628" classname="info.textgrid.middleware.OaiPmhTest" name="testListRecords"/>
+  <testcase time="0.287" classname="info.textgrid.middleware.OaiPmhTest" name="testListMetadataFormats"/>
 </testsuite>
\ No newline at end of file
diff --git a/oaipmh-core/target/surefire-reports/info.textgrid.middleware.OaiPmhTest.txt b/oaipmh-core/target/surefire-reports/info.textgrid.middleware.OaiPmhTest.txt
index 8db89ab4f0a75d1633d6ebd9356ddb440182517a..bfd1e719d8d7479c3882fa737378ff3a38f7133a 100644
--- a/oaipmh-core/target/surefire-reports/info.textgrid.middleware.OaiPmhTest.txt
+++ b/oaipmh-core/target/surefire-reports/info.textgrid.middleware.OaiPmhTest.txt
@@ -1,4 +1,4 @@
 -------------------------------------------------------------------------------
 Test set: info.textgrid.middleware.OaiPmhTest
 -------------------------------------------------------------------------------
-Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.356 sec
+Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.084 sec
diff --git a/oaipmh-core/target/test-classes/info/textgrid/middleware/OaiPmhTest.class b/oaipmh-core/target/test-classes/info/textgrid/middleware/OaiPmhTest.class
index 312c611406bfedb0fa87ce6eaa38a4a1109e45ba..fed035637ce62e11a5f802d3b202684ea1b32fbd 100644
Binary files a/oaipmh-core/target/test-classes/info/textgrid/middleware/OaiPmhTest.class and b/oaipmh-core/target/test-classes/info/textgrid/middleware/OaiPmhTest.class differ
diff --git a/oaipmh-webapp/target/maven-archiver/pom.properties b/oaipmh-webapp/target/maven-archiver/pom.properties
index 04e273b86a302daa8b6bb76d1358fe06b0881421..6e15ae2a00d7742064b4d736cb9e1f881fdb4097 100644
--- a/oaipmh-webapp/target/maven-archiver/pom.properties
+++ b/oaipmh-webapp/target/maven-archiver/pom.properties
@@ -1,5 +1,5 @@
 #Generated by Maven
-#Tue Mar 11 10:36:28 CET 2014
+#Tue Mar 11 17:03:51 CET 2014
 version=1.0-SNAPSHOT
 groupId=info.textgrid.middleware
 artifactId=oaipmh-webapp
diff --git a/oaipmh-webapp/target/tgoaipmh.war b/oaipmh-webapp/target/tgoaipmh.war
index 59447e07ab393d499e1dcec85ca41a0f10039872..a9877f2bcdc9446cfccf906bc0a098adc40eaa61 100644
Binary files a/oaipmh-webapp/target/tgoaipmh.war and b/oaipmh-webapp/target/tgoaipmh.war differ
diff --git a/oaipmh-webapp/target/tgoaipmh/WEB-INF/lib/oaipmh-core-1.0-SNAPSHOT.jar b/oaipmh-webapp/target/tgoaipmh/WEB-INF/lib/oaipmh-core-1.0-SNAPSHOT.jar
index 21146289f41f05954df60843181ffd1eddd139e3..ad41dbdbaaefc07393c1257089627c5c515c80e4 100644
Binary files a/oaipmh-webapp/target/tgoaipmh/WEB-INF/lib/oaipmh-core-1.0-SNAPSHOT.jar and b/oaipmh-webapp/target/tgoaipmh/WEB-INF/lib/oaipmh-core-1.0-SNAPSHOT.jar differ