Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id DF849200CA9 for ; Mon, 8 May 2017 23:05:45 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id DE113160BCD; Mon, 8 May 2017 21:05:45 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 65F2C160BC7 for ; Mon, 8 May 2017 23:05:43 +0200 (CEST) Received: (qmail 85705 invoked by uid 500); 8 May 2017 21:05:42 -0000 Mailing-List: contact commits-help@jena.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@jena.apache.org Delivered-To: mailing list commits@jena.apache.org Received: (qmail 85527 invoked by uid 99); 8 May 2017 21:05:40 -0000 Received: from Unknown (HELO svn01-us-west.apache.org) (209.188.14.144) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 May 2017 21:05:40 +0000 Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 84C923A51C7 for ; Mon, 8 May 2017 21:05:39 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1794466 [11/48] - in /jena/site/trunk/content/documentation/javadoc: fuseki2-embedded/ fuseki2-embedded/org/ fuseki2-embedded/org/apache/ fuseki2-embedded/org/apache/jena/ fuseki2-embedded/org/apache/jena/fuseki/ fuseki2-embedded/org/apach... Date: Mon, 08 May 2017 21:05:36 -0000 To: commits@jena.apache.org From: andy@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20170508210539.84C923A51C7@svn01-us-west.apache.org> archived-at: Mon, 08 May 2017 21:05:46 -0000 Added: jena/site/trunk/content/documentation/javadoc/fuseki2/org/apache/jena/fuseki/build/FusekiConfig.html URL: http://svn.apache.org/viewvc/jena/site/trunk/content/documentation/javadoc/fuseki2/org/apache/jena/fuseki/build/FusekiConfig.html?rev=1794466&view=auto ============================================================================== --- jena/site/trunk/content/documentation/javadoc/fuseki2/org/apache/jena/fuseki/build/FusekiConfig.html (added) +++ jena/site/trunk/content/documentation/javadoc/fuseki2/org/apache/jena/fuseki/build/FusekiConfig.html Mon May 8 21:05:34 2017 @@ -0,0 +1,324 @@ + + + + + + +FusekiConfig (Apache Jena - Fuseki Server Engine 2.6.0) + + + + + + + + + + + + +
+
org.apache.jena.fuseki.build
+

Class FusekiConfig

+
+
+ +
+
    +
  • +
    +
    +
    public class FusekiConfig
    +extends Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        FusekiConfig

        +
        public FusekiConfig()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        readServerConfigFile

        +
        public static List<DataAccessPoint> readServerConfigFile(String filename)
        +
        Has side effects in server setup
        +
      • +
      + + + +
        +
      • +

        readConfigurationDirectory

        +
        public static List<DataAccessPoint> readConfigurationDirectory(String dir)
        +
        Read service descriptions in the given directory
        +
      • +
      + + + +
        +
      • +

        readConfigurationFile

        +
        public static List<DataAccessPoint> readConfigurationFile(String fn)
        +
        Read and process one file
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + + + + +

Licensed under the Apache License, Version 2.0

+ + Added: jena/site/trunk/content/documentation/javadoc/fuseki2/org/apache/jena/fuseki/build/RefCountingMap.html URL: http://svn.apache.org/viewvc/jena/site/trunk/content/documentation/javadoc/fuseki2/org/apache/jena/fuseki/build/RefCountingMap.html?rev=1794466&view=auto ============================================================================== --- jena/site/trunk/content/documentation/javadoc/fuseki2/org/apache/jena/fuseki/build/RefCountingMap.html (added) +++ jena/site/trunk/content/documentation/javadoc/fuseki2/org/apache/jena/fuseki/build/RefCountingMap.html Mon May 8 21:05:34 2017 @@ -0,0 +1,522 @@ + + + + + + +RefCountingMap (Apache Jena - Fuseki Server Engine 2.6.0) + + + + + + + + + + + + +
+
org.apache.jena.fuseki.build
+

Class RefCountingMap<K,T>

+
+
+ +
+
    +
  • +
    +
    Type Parameters:
    +
    K -
    +
    T -
    +
    +
    +
    +
    public class RefCountingMap<K,T>
    +extends Object
    +
    A key -> value 'map' which reference counts entries. + +

    + The same (key,value) pair can be added to the map several times and then + removed several times. A reference count is incremented for each addition + and, provided the count is greater than 0, decremented on removal. +

    + +

    + The pair is removed from the map when a remove decrements the reference count to 0. +

    + +

    + This class is thread safe. +

    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        RefCountingMap

        +
        public RefCountingMap()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + + + +
        +
      • +

        contains

        +
        public boolean contains(K key)
        +
      • +
      + + + + + + + +
        +
      • +

        size

        +
        public int size()
        +
      • +
      + + + +
        +
      • +

        isEmpty

        +
        public boolean isEmpty()
        +
      • +
      + + + +
        +
      • +

        clear

        +
        public void clear()
        +
        Clear the map of all keys regardless of reference counts.
        +
      • +
      + + + +
        +
      • +

        keySet

        +
        public Set<K> keySet()
        +
      • +
      + + + +
        +
      • +

        containsKey

        +
        public boolean containsKey(Object key)
        +
      • +
      + + + + + +
        +
      • +

        add

        +
        public void add(K key,
        +                T value)
        +
        Add a key value pair to the map. + +

        + if there is no entry in the map for the key, then a key value pair is added + to the map with a reference count of 1. +

        + +

        + If there is already an entry in the map for the same key and value, + the reference count for that entry is incremented. +

        + +

        + if there is an entry in the map for the key, but with a different value, + then that entry is replaced with a new entry for the key and value with + a reference count of 1. +

        +
        +
        Parameters:
        +
        key -
        +
        value -
        +
        +
      • +
      + + + + + +
        +
      • +

        remove

        +
        public void remove(K key)
        +
        Decrement the reference count for a key, and remove the corresponding entry from the map + if the result is 0. + +

        + Do nothing if there is no entry in the map corresponding to the key. +

        +
        +
        Parameters:
        +
        key -
        +
        +
      • +
      + + + + + +
        +
      • +

        removeAll

        +
        public void removeAll(K key)
        +
        Remove the entry corresponding to the key from the map completely. + +

        + This method ignores the reference count. +

        +
        +
        Parameters:
        +
        key -
        +
        +
      • +
      + + + + + +
        +
      • +

        refCount

        +
        public int refCount(K key)
        +
        Return the reference count for the entry corresponding to a key in the map. + +

        + Returns 0 if there is no entry in the map corresponding to the key. +

        +
        +
        Parameters:
        +
        key -
        +
        Returns:
        +
        the reference count for the entry corresponding to key in the map, + or 0 if there is no corresponding entry.
        +
        +
      • +
      + + + +
        +
      • +

        get

        +
        public T get(Object key)
        +
        Return the value associated with a key in the map.
        +
        +
        Parameters:
        +
        key -
        +
        Returns:
        +
        the value associated with the key, or null if there is no such value.
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Licensed under the Apache License, Version 2.0

+ + Added: jena/site/trunk/content/documentation/javadoc/fuseki2/org/apache/jena/fuseki/build/Template.html URL: http://svn.apache.org/viewvc/jena/site/trunk/content/documentation/javadoc/fuseki2/org/apache/jena/fuseki/build/Template.html?rev=1794466&view=auto ============================================================================== --- jena/site/trunk/content/documentation/javadoc/fuseki2/org/apache/jena/fuseki/build/Template.html (added) +++ jena/site/trunk/content/documentation/javadoc/fuseki2/org/apache/jena/fuseki/build/Template.html Mon May 8 21:05:34 2017 @@ -0,0 +1,479 @@ + + + + + + +Template (Apache Jena - Fuseki Server Engine 2.6.0) + + + + + + + + + + + + +
+
org.apache.jena.fuseki.build
+

Class Template

+
+
+ +
+
    +
  • +
    +
    +
    public class Template
    +extends Object
    +
  • +
+
+
+ +
+
+ +
+
+ + + + + +

Licensed under the Apache License, Version 2.0

+ + Added: jena/site/trunk/content/documentation/javadoc/fuseki2/org/apache/jena/fuseki/build/TemplateFunctions.html URL: http://svn.apache.org/viewvc/jena/site/trunk/content/documentation/javadoc/fuseki2/org/apache/jena/fuseki/build/TemplateFunctions.html?rev=1794466&view=auto ============================================================================== --- jena/site/trunk/content/documentation/javadoc/fuseki2/org/apache/jena/fuseki/build/TemplateFunctions.html (added) +++ jena/site/trunk/content/documentation/javadoc/fuseki2/org/apache/jena/fuseki/build/TemplateFunctions.html Mon May 8 21:05:34 2017 @@ -0,0 +1,320 @@ + + + + + + +TemplateFunctions (Apache Jena - Fuseki Server Engine 2.6.0) + + + + + + + + + + + + +
+
org.apache.jena.fuseki.build
+

Class TemplateFunctions

+
+
+ +
+
    +
  • +
    +
    +
    public class TemplateFunctions
    +extends Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        TemplateFunctions

        +
        public TemplateFunctions()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        templateFile

        +
        public static String templateFile(String templateName,
        +                                  Map<String,String> params,
        +                                  Lang lang)
        +
        Read in a template from a file, substitute for {NAME} and return the string.
        +
      • +
      + + + +
        +
      • +

        templateResource

        +
        public static String templateResource(String resourceName,
        +                                      Map<String,String> params,
        +                                      Lang lang)
        +
        Read a template file, substitute for {NAME} and return the model.
        +
      • +
      + + + +
        +
      • +

        templateString

        +
        public static String templateString(String template,
        +                                    Map<String,String> params,
        +                                    Lang lang)
        +
        Create a template from a String
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Licensed under the Apache License, Version 2.0

+ +