blob: 3b3cc44612c5bda57245684d2b4d31e36c961615 [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;
import org.eclipse.om2m.sdt.types.DataType;
public interface Identifiers {
String getDefinition();
String getShortName();
String getLongName();
public interface Typed extends Identifiers {
DataType getDataType();
}
}