Merge pull request #645 from projekt-opal/master

DCAT vocabulary version 2
diff --git a/jena-core/src/main/java/org/apache/jena/vocabulary/DCAT.java b/jena-core/src/main/java/org/apache/jena/vocabulary/DCAT.java
index 99d4704..95ec910 100644
--- a/jena-core/src/main/java/org/apache/jena/vocabulary/DCAT.java
+++ b/jena-core/src/main/java/org/apache/jena/vocabulary/DCAT.java
@@ -48,6 +48,11 @@
 	public static final Resource Dataset = m.createResource(NS + "Dataset");
 	public static final Resource Distribution = m.createResource(NS + "Distribution");
 	
+	// Classes added in DCAT version 2
+	public static final Resource DataService = m.createResource(NS + "DataService");
+	public static final Resource Relationship = m.createResource(NS + "Relationship");
+	public static final Resource Role = m.createResource(NS + "Role");
+	
 	// Properties
 	public static final Property accessURL = m.createProperty(NS + "accessURL");
 	public static final Property byteSize = m.createProperty(NS + "byteSize");
@@ -61,4 +66,22 @@
 	public static final Property record = m.createProperty(NS + "record");
 	public static final Property theme = m.createProperty(NS + "theme");
 	public static final Property themeTaxonomy = m.createProperty(NS + "themeTaxonomy");
+	
+	// Properties added in DCAT version 2
+	public static final Property accessService = m.createProperty(NS + "accessService");
+	public static final Property bbox = m.createProperty(NS + "bbox");
+	public static final Property catalog = m.createProperty(NS + "catalog");
+	public static final Property centroid = m.createProperty(NS + "centroid");
+	public static final Property compressFormat = m.createProperty(NS + "compressFormat");
+	public static final Property endDate = m.createProperty(NS + "endDate");
+	public static final Property endpointDescription = m.createProperty(NS + "endpointDescription");
+	public static final Property endpointURL = m.createProperty(NS + "endpointURL");
+	public static final Property hadRole = m.createProperty(NS + "hadRole");
+	public static final Property packageFormat = m.createProperty(NS + "packageFormat");
+	public static final Property qualifiedRelation = m.createProperty(NS + "qualifiedRelation");
+	public static final Property servesDataset = m.createProperty(NS + "servesDataset");
+	public static final Property service = m.createProperty(NS + "service");
+	public static final Property spatialResolutionInMeters = m.createProperty(NS + "spatialResolutionInMeters");
+	public static final Property startDate = m.createProperty(NS + "startDate");
+	public static final Property temporalResolution = m.createProperty(NS + "temporalResolution");
 }