blob: 08d717514065a5d36829b32f4b7899425a78c74a [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.datapoints;
import org.eclipse.om2m.sdt.Identifiers;
import org.eclipse.om2m.sdt.types.DataType;
public abstract class ByteDataPoint extends ValuedDataPoint<Byte> {
public ByteDataPoint(Identifiers name) {
super(name, DataType.Byte);
}
}