All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.unibz.inf.ontop.injection.OntopSystemSettings Maven / Gradle / Ivy

The newest version!
package it.unibz.inf.ontop.injection;


import java.util.Optional;

public interface OntopSystemSettings extends OntopReformulationSettings {

    /**
     * Query EVALUATION timeout (executed on the DB engine)
     *
     * Has no effect if negative or equal to 0.
     */
    Optional getDefaultQueryTimeout();

    /**
     * Needed by some in-memory DBs
     *  (e.g. an H2 DB storing a semantic index)
     */
    boolean isPermanentDBConnectionEnabled();

    // HTTP Caching
    Optional getHttpCacheControl();

    //--------------------------
    // Keys
    //--------------------------

    String DEFAULT_QUERY_TIMEOUT = "ontop.query.defaultTimeout";
    String PERMANENT_DB_CONNECTION = "ontop.permanentConnection";

    // HTTP caching
    String HTTP_CACHE_CONTROL = "ontop.http.cacheControl";
    @Deprecated
    String HTTP_CACHE_MAX_AGE = "ontop.http.cache.maxAge";
    @Deprecated
    String HTTP_CACHE_STALE_WHILE_REVALIDATE = "ontop.http.cache.staleWhileRevalidate";
    @Deprecated
    String HTTP_CACHE_STALE_IF_ERROR = "ontop.http.cache.staleIfError";
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy