/** * Copyright (c) 2012 - 2018 Data In Motion and others. * All rights reserved. * * This program and the accompanying materials are made available under the terms of the * Eclipse Public License v1.0 which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Data In Motion - initial API and implementation */ package org.gecko.runtime.resources; import org.gecko.runtime.boot.GeckoBootConstants; /** * Constants for the resources * @author Mark Hoffmann * @since 24.11.2018 */ public interface GeckoResourcesConstants extends GeckoBootConstants { /** Name for the configuration factory PID */ public static final String RESOURCES_FACTORY_ID = "ResourcesConfiguration"; /** Name of the resource */ public static final String RESOURCE_NAME = "gecko.resource.name"; /** Path to the resource */ public static final String RESOURCE_PATH = "gecko.resource.path"; }