blob: 483e696966ede2adfef37963ed0292615c4101ba [file] [log] [blame]
/********************************************************************************
* Copyright (c) 2020 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
********************************************************************************/
package org.eclipse.jifa.worker;
public interface Constant extends org.eclipse.jifa.common.Constant {
interface Misc {
String VERTX_CONFIG_KEY = "jifa.vertx.config";
String WORKER_CONFIG_KEY = "jifa.worker.config";
String DEFAULT_VERTX_CONFIG = "vertx-config.json";
String DEFAULT_WORKER_CONFIG = "worker-config.json";
String DEFAULT_WORKSPACE = System.getProperty("user.home") + java.io.File.separator + "jifa_workspace";
String DEFAULT_HOST = "0.0.0.0";
String WEB_ROOT_KEY = "jifa.webroot";
}
interface Heap {
String TOTAL_SIZE_KEY = "totalSize";
String SHALLOW_HEAP_KEY = "shallowHeap";
String RETAINED_HEAP_KEY = "retainedHeap";
}
interface File {
String INFO_FILE_SUFFIX = "-info.json";
}
interface ConfigKey {
String WORKSPACE = "workspace";
String API_PREFIX = "api.prefix";
String SERVER_HOST_KEY = "server.host";
String SERVER_PORT_KEY = "server.port";
}
}