blob: d941445247aa67df738f657972ef3c5e71085e78 [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.ipe.sample.sdt.model;
import org.eclipse.om2m.sdt.Domain;
import org.eclipse.om2m.sdt.Event;
import org.eclipse.om2m.sdt.datapoints.BooleanDataPoint;
import org.eclipse.om2m.sdt.exceptions.AccessException;
import org.eclipse.om2m.sdt.exceptions.ActionException;
import org.eclipse.om2m.sdt.exceptions.DataPointException;
import org.eclipse.om2m.sdt.home.actions.Toggle;
import org.eclipse.om2m.sdt.home.modules.BinarySwitch;
import org.eclipse.om2m.sdt.home.types.DatapointType;
public class SampleBinarySwitch extends BinarySwitch {
public SampleBinarySwitch(String name, Domain domain) {
super(name, domain,
new BooleanDataPoint(DatapointType.powerState) {
private Boolean powerState = Boolean.FALSE;
@Override
public void doSetValue(Boolean value) throws DataPointException {
powerState = value;
}
@Override
public Boolean doGetValue() throws DataPointException {
return powerState;
}
}
);
setToggle(new Toggle("toggle") {
@Override
protected void doToggle() throws ActionException {
try {
setPowerState(! getPowerState());
} catch (DataPointException e) {
throw new ActionException(e);
} catch (AccessException e) {
throw new ActionException(e);
}
}
});
}
public void setPowerState(boolean v) throws DataPointException, AccessException {
super.setPowerState(v);
Event evt = new Event("SWITCH " + getOwner().getId());
evt.addDataPoint(getDataPointByShortName(DatapointType.powerState.getShortName()));
evt.setValue(v);
addEvent(evt);
}
}