org.somda.sdc.biceps.common.event.ComponentStateModificationMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of biceps Show documentation
Show all versions of biceps Show documentation
SDCri is a set of Java libraries that implements a network communication framework conforming
with the IEEE 11073 SDC specifications. This project implements the functionality described in
IEEE 11073-10207.
package org.somda.sdc.biceps.common.event;
import org.somda.sdc.biceps.common.access.MdibAccess;
import org.somda.sdc.biceps.model.participant.AbstractDeviceComponentState;
import java.util.List;
/**
* Subscribe to this message in order to receive component state changes.
*
* Remark: components are clock, battery, MDS, VMD, channels, SCO and system context.
*/
public class ComponentStateModificationMessage extends StateModificationMessage {
/**
* Constructor.
*
* @param mdibAccess the MDIB access for {@link AbstractMdibAccessMessage}.
* @param states the states of the message.
*/
public ComponentStateModificationMessage(MdibAccess mdibAccess, List states) {
super(mdibAccess, states);
}
}