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

com.yahoo.container.ConfigHack Maven / Gradle / Ivy

// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.container;

import com.yahoo.container.config.StatisticsEmitter;

/**
 * Distribution point for QRS specific stuff in a more or less
 * container agnostic way. This is only a stepping stone to moving these things
 * to Container and other pertinent classes, or simply removing the problems.
 *
 * 

* This class should not reach a final release. * * @author Steinar Knutsen */ public final class ConfigHack { private volatile StatisticsEmitter statisticsEmitter = new StatisticsEmitter(); public static final String TILED_TEMPLATE = "tiled"; public static final ConfigHack instance = new ConfigHack(); public StatisticsEmitter getStatisticsHandler() { return statisticsEmitter; } public void setStatisticsEmitter(StatisticsEmitter statisticsEmitter) { this.statisticsEmitter = statisticsEmitter; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy