blob: 096c63b3232045d4d43e31d553733f4cd8a6bed4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014, 2016 Orange.
* 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
*******************************************************************************/
package org.eclipse.om2m.sdt.home.types;
import org.eclipse.om2m.sdt.datapoints.EnumDataPoint;
public abstract class AlertColourCode extends EnumDataPoint<Integer> {
static public final int Red = 1;
static public final int Green = 2;
public AlertColourCode(String name) {
super(name, HomeDataType.AlertColourCode);
setValidValues(new Integer[] { Red, Green });
}
}