blob: 40ba9d6eeaa13a891dce6be751d99878d7bcc51c [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.args;
import org.eclipse.om2m.sdt.types.DataType;
public class BooleanArg extends ValuedArg<Boolean> {
public BooleanArg(String name) {
super(name, DataType.Boolean);
}
}