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 2015/10/23 22:38:08 UTC

[07/13] jena git commit: Imporve comments.

Imporve comments.

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

Branch: refs/heads/master
Commit: 33bb6a8732073c14be323a458df7ab4f38ab78d3
Parents: b764a94
Author: Andy Seaborne <an...@apache.org>
Authored: Fri Oct 23 17:34:01 2015 +0100
Committer: Andy Seaborne <an...@apache.org>
Committed: Fri Oct 23 17:34:01 2015 +0100

----------------------------------------------------------------------
 .../jena/fuseki/server/ServerInitialConfig.java       | 14 ++++++--------
 1 file changed, 6 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jena/blob/33bb6a87/jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/server/ServerInitialConfig.java
----------------------------------------------------------------------
diff --git a/jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/server/ServerInitialConfig.java b/jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/server/ServerInitialConfig.java
index d3b1966..1e42bd6 100644
--- a/jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/server/ServerInitialConfig.java
+++ b/jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/server/ServerInitialConfig.java
@@ -28,20 +28,18 @@ public class ServerInitialConfig {
     // Priority order : --conf, templated  
     // through the command line processing should not allow --conf and a templated /dataset.
     
-    // Either this ...
-    public String    argTemplateFile     = null ;           // Command list args --mem, --loc, --memtdb
+    // Either this ... command line ...
+    public String    argTemplateFile  = null ;              // Command list args --mem, --loc, --memtdb
     public String    datasetPath      = null ;              // Dataset name on the command line.
     public boolean   allowUpdate      = false ;             // Command line --update.
-    // Special case - directly pass in the dataset graphs - datasetPath must be given.
-    public DatasetGraph dsg           = null ;              // Command line --file.
+    // Special case - prebuilt dataset.  Uses datasetPath.
+    public DatasetGraph dsg           = null ;             // Embedded or command line --file)
     
-    // Or this ... 
+    // Or configuration file from command line 
     public String    fusekiCmdLineConfigFile = null ;       // Command line --conf.
-    // Or this ... (lowest priority)
+    // Or configuration from run area (lowest priority)
     public String    fusekiServerConfigFile = null ;        // "run" area
     
-    
     // Additional information.
     public Map<String,String> params  = new HashMap<>() ;
-    
 }