All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.somda.sdc.biceps.common.event.ComponentStateModificationMessage Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 5.1.1
Show newest version
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); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy