blob: 1d80a204b46bc7a6c319623cf79a960c33225073 [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.datapoints;
import org.eclipse.om2m.sdt.Identifiers;
import org.eclipse.om2m.sdt.types.DataType;
public abstract class BooleanDataPoint extends ValuedDataPoint<Boolean> {
public BooleanDataPoint(Identifiers type) {
super(type, DataType.Boolean);
}
}