blob: 1041c26455ef9e3dc36b5d4060a745a83386d741 [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.devices;
import org.eclipse.om2m.sdt.Domain;
import org.eclipse.om2m.sdt.home.modules.SmokeSensor;
import org.eclipse.om2m.sdt.home.types.DeviceType;
public class SmokeDetector extends GenericSensor {
public SmokeDetector(final String id, final String serial, final Domain domain) {
super(id, serial, DeviceType.deviceSmokeDetector, domain);
setDeviceSubModelName("SMOKE");
}
public SmokeSensor getSmokeSensor() {
return (SmokeSensor) sensor;
}
}