package eu.musesproject.server.eventprocessor.util;
/*
* #%L
* MUSES Server
* %%
* Copyright (C) 2013 - 2014 S2 Grupo
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* #L%
*/
public class Constants {
public final static String FILE_PROTOCOL = "file://";
public final static String DROOLS_INTERVAL = "drools.resource.scanner.interval";
public final static String DROOLS_INTERVAL_VALUE = "86400";//24*60*60 One day
public final static String CORRELATOR_NAME = "MusesCorrelator";
public final static String STARTED = "Started";
public final static String ACCESS_REQUEST = "AccessRequest";
public final static String COMPANY_NAME = "Acme";
public final static String SUCCESS = "SUCCESS";
public final static String FAIL = "FAIL";
public final static String OS_ANDROID = "Android";
public final static String OS_WINDOWS = "Windows";
public final static String NONE = "NONE";
public final static String PUBLIC = "PUBLIC";
public final static String CONFIDENTIAL = "CONFIDENTIAL";
public final static String STRICTLY_CONFIDENTIAL = "STRICTLY_CONFIDENTIAL";
public final static String INTERNAL = "INTERNAL";
public final static String VALIDATED = "VALIDATED";
public final static String DRAFT = "DRAFT";
public final static String WORKING_HOURS_OPP = "working hours opportunity";
}