Github user kinow commented on a diff in the pull request:

    https://github.com/apache/jena/pull/456#discussion_r207734465
  
    --- Diff: 
jena-fuseki2/jena-fuseki-core/src/main/java/org/apache/jena/fuseki/build/FusekiBuildLib.java
 ---
    @@ -0,0 +1,125 @@
    +/*
    + * Licensed to the Apache Software Foundation (ASF) under one
    + * or more contributor license agreements.  See the NOTICE file
    + * distributed with this work for additional information
    + * regarding copyright ownership.  The ASF licenses this file
    + * to you under the Apache License, Version 2.0 (the
    + * "License"); you may not use this file except in compliance
    + * with the License.  You may obtain a copy of the License at
    + *
    + *     http://www.apache.org/licenses/LICENSE-2.0
    + *
    + * Unless required by applicable law or agreed to in writing, software
    + * distributed under the License is distributed on an "AS IS" BASIS,
    + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    + * See the License for the specific language governing permissions and
    + * limitations under the License.
    + */
    +
    +package org.apache.jena.fuseki.build;
    +
    +import org.apache.jena.fuseki.FusekiConfigException;
    +import org.apache.jena.fuseki.webapp.SystemState;
    +import org.apache.jena.query.* ;
    +import org.apache.jena.rdf.model.Literal ;
    +import org.apache.jena.rdf.model.Model ;
    +import org.apache.jena.rdf.model.RDFNode ;
    +import org.apache.jena.rdf.model.Resource ;
    +import org.apache.jena.shared.PrefixMapping ;
    +import org.apache.jena.vocabulary.RDFS ;
    +
    +public class FusekiBuildLib {
    --- End diff --
    
    Is `FusekiBuildLib` going to replace `FusekiLib`? Would it be worth a 
one/two lines comment explaining what each one does? Just so one does not 
create a method in one, while the method was supposed to be in the other 
class... 
    
    From a quick peek at the new classes, I think `FusekiLib` is for methods 
used by  Fuseki server, and `FusekiBuildLib` is more for handling 
nodes/resources. In which case maybe `FusekiLib#addDataInto` methods sit in 
between, but maybe could be in `FusekiBuildLib` too?


---

Reply via email to