blob: 391211cbaac3fef06d23474f902fec6e3ea6c8b4 [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.commons.constants;
import java.math.BigInteger;
/**
* Constants for result content
*
*/
public class ResultContent {
/** Private constructor */
private ResultContent(){}
public static final BigInteger NOTHING = BigInteger.valueOf(0);
public static final BigInteger ATTRIBUTES = BigInteger.valueOf(1);
public static final BigInteger HIERARCHICAL_ADRESS = BigInteger.valueOf(2);
public static final BigInteger HIERARCHICAL_AND_ATTRIBUTES = BigInteger.valueOf(3);
public static final BigInteger ATTRIBUTES_AND_CHILD_RES = BigInteger.valueOf(4);
public static final BigInteger ATTRIBUTES_AND_CHILD_REF = BigInteger.valueOf(5);
public static final BigInteger CHILD_REF = BigInteger.valueOf(6);
public static final BigInteger ORIGINAL_RES = BigInteger.valueOf(7);
}