blob: 206a27761d68a32c5c73f4712d4af980f8934aef [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.home.devices;
import org.eclipse.om2m.sdt.Domain;
import org.eclipse.om2m.sdt.Module;
import org.eclipse.om2m.sdt.home.modules.Level;
import org.eclipse.om2m.sdt.home.types.DeviceType;
public class WaterValve extends GenericActuator {
private Level waterLevel;
public WaterValve(final String id, final String serial, final Domain domain) {
super(id, serial, DeviceType.deviceWaterValve, domain);
setDeviceSubModelName("WATER");
}
public void addModule(Module module) {
if (module instanceof Level)
addModule((Level)module);
else
super.addModule(module);
}
public void addModule(Level waterLevel) {
this.waterLevel = waterLevel;
super.addModule(waterLevel);
}
public Level getWaterLevel() {
return waterLevel;
}
}