You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2016/08/05 16:34:02 UTC

[4/6] jena git commit: Add quads endpoint properties.

Add quads endpoint properties.

Project: http://git-wip-us.apache.org/repos/asf/jena/repo
Commit: http://git-wip-us.apache.org/repos/asf/jena/commit/e7df210a
Tree: http://git-wip-us.apache.org/repos/asf/jena/tree/e7df210a
Diff: http://git-wip-us.apache.org/repos/asf/jena/diff/e7df210a

Branch: refs/heads/master
Commit: e7df210a04c57bbb9c0d64853e062237ef8bfe6b
Parents: f643025
Author: Andy Seaborne <an...@apache.org>
Authored: Fri Aug 5 17:31:12 2016 +0100
Committer: Andy Seaborne <an...@apache.org>
Committed: Fri Aug 5 17:31:12 2016 +0100

----------------------------------------------------------------------
 .../java/org/apache/jena/fuseki/server/FusekiVocab.java   | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jena/blob/e7df210a/jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/server/FusekiVocab.java
----------------------------------------------------------------------
diff --git a/jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/server/FusekiVocab.java b/jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/server/FusekiVocab.java
index ce9c610..ad4a700 100644
--- a/jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/server/FusekiVocab.java
+++ b/jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/server/FusekiVocab.java
@@ -35,11 +35,13 @@ public class FusekiVocab
     public static final Property pServices = property("services") ;
     public static final Property pServiceName = property("name") ;
     
-    public static final Property pServiceQueryEP = property("serviceQuery") ;
-    public static final Property pServiceUpdateEP = property("serviceUpdate") ;
-    public static final Property pServiceUploadEP = property("serviceUpload") ;
+    public static final Property pServiceQueryEP               = property("serviceQuery") ;
+    public static final Property pServiceUpdateEP              = property("serviceUpdate") ;
+    public static final Property pServiceUploadEP              = property("serviceUpload") ;
     public static final Property pServiceReadWriteGraphStoreEP = property("serviceReadWriteGraphStore") ;
-    public static final Property pServiceReadgraphStoreEP = property("serviceReadGraphStore") ;
+    public static final Property pServiceReadGraphStoreEP      = property("serviceReadGraphStore") ;
+    public static final Property pServiceReadWriteQuadsEP      = property("serviceReadWriteQuads") ;
+    public static final Property pServiceReadQuadsEP           = property("serviceReadQuads") ;
 
     public static final Property pAllowTimeoutOverride = property("allowTimeoutOverride");
     public static final Property pMaximumTimeoutOverride = property("maximumTimeoutOverride");