blob: 0dda9748995820dfc37a9ee7f808d7bee06f5d69 [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.Module;
import org.eclipse.om2m.sdt.home.modules.BinarySwitch;
import org.eclipse.om2m.sdt.home.modules.FaultDetection;
import org.eclipse.om2m.sdt.home.types.DeviceType;
public class GenericActuator extends GenericDevice {
protected FaultDetection faultDetection;
protected BinarySwitch binarySwitch;
public GenericActuator(final String id, final String serial,
final DeviceType type, final Domain domain) {
super(id, serial, type, domain);
}
public void addModule(Module module) {
if (module instanceof FaultDetection)
addModule((FaultDetection)module);
else if (module instanceof BinarySwitch)
addModule((BinarySwitch)module);
else
super.addModule(module);
}
public void addModule(BinarySwitch binarySwitch) {
this.binarySwitch = binarySwitch;
super.addModule(binarySwitch);
}
public void addModule(FaultDetection faultDetection) {
this.faultDetection = faultDetection;
super.addModule(faultDetection);
}
public BinarySwitch getBinarySwitch() {
return binarySwitch;
}
public FaultDetection getFaultDetection() {
return faultDetection;
}
}