blob: b25ca4f1466448e4115eb372f28fe6fb88641865 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013-2020 LAAS-CNRS (www.laas.fr)
* 7 Colonel Roche 31077 Toulouse - France
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Initial Contributors:
* Thierry Monteil : Project manager, technical co-manager
* Mahdi Ben Alaya : Technical co-manager
* Samir Medjiah : Technical co-manager
* Khalil Drira : Strategy expert
* Guillaume Garzone : Developer
* François Aïssaoui : Developer
*
* New contributors :
*******************************************************************************/
package org.eclipse.om2m.ipe.sample.constants;
import org.eclipse.om2m.commons.constants.Constants;
public class SampleConstants {
private SampleConstants(){}
public static final String POA = "sample";
public static final String DATA = "DATA";
public static final String DESC = "DESCRIPTOR";
public static final String AE_NAME = "AE_IPE_SAMPLE";
public static final String LAMP_0 = "LAMP_0";
public static final String LAMP_1 = "LAMP_1";
public static final String QUERY_STRING_OP = "op";
public static final String QUERY_STRING_LAMP_ID = "lampid";
public static final boolean GUI = Boolean.valueOf(System.getProperty("org.eclipse.om2m.ipe.sample.gui", "true"));
public static String CSE_ID = "/" + Constants.CSE_ID;
public static String CSE_PREFIX = CSE_ID + "/" + Constants.CSE_NAME;
}