blob: 41f0c6d8c1e69b6f94aaa91d3e3c9e68bfeaf8fe [file] [log] [blame]
/*******************************************************************************
* Copyright (C) 2021 the Eclipse BaSyx Authors
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
******************************************************************************/
package org.eclipse.basyx.wrapper.receiver;
/**
* Represents a single property endpoint
*
* @author espen
*
*/
public interface IPropertyEndpoint {
public DataPoint retrieveValue();
public void setValue(Object newValue);
}