blob: 6f8768bde9d0dcab3aae8213a245f20c4d598c8a [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 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*******************************************************************************/
package org.eclipse.om2m.sdt.home.types;
import org.eclipse.om2m.sdt.datapoints.EnumDataPoint;
public abstract class AlertColourCode extends EnumDataPoint<AlertColourCode.Values> {
static public enum Values {
red, green
}
public AlertColourCode() {
this(DatapointType.light);
}
public AlertColourCode(DatapointType dt) {
super(dt, HomeDataType.AlertColourCode);
setValidValues(Values.values());
}
}