blob: 2dcf78d9e275fde70919192e4d1bb0c1a38a9422 [file] [log] [blame]
package org.eclipse.basyx.wrapper.receiver;
/**
* Represents a single property endpoint
*
* @author espen
*
*/
public interface IPropertyEndpoint {
public DataPoint retrieveValue();
public void setValue(Object newValue);
}