blob: f4582bf0fa593350bfc166a3144f9cf16c1649d6 [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.vab.protocol.api;
import org.eclipse.basyx.vab.exception.provider.ProviderException;
/**
* Connector interface for technology specific communication. Returns the
* response including meta information
*
* @author pschorn
*
*/
public interface IBaSyxConnector {
/**
* Get a sub model property value
*
* @param path
* Path to the requested value
* @return Property value. Object type is assumed to be [Integer | ... |
* Collection]
*/
public String getValue(String path) throws ProviderException;
/**
* Sets or overrides existing property, operation or event.
*
* @param path
* Path to the requested value
* @param newValue
* Updated value
*/
public String setValue(String path, String newValue) throws ProviderException;
/**
* Create a new property, operation, event submodel or aas under the given path
*
* @param path
* Path to the entity where the element should be created
* @param newEntity
* new Element to be created on the server
*/
public String createValue(String path, String newEntity) throws ProviderException;
/**
* Delete a property, operation, event, submodel or aas under the given path
*
* @param path
* Path to the entity that should be deleted
*/
public String deleteValue(String path) throws ProviderException;
/**
* Deletes an entry from a map or collection by the given key
*
* @param path
* Path to the entity that should be deleted
*/
public String deleteValue(String path, String obj) throws ProviderException;
/**
* Invoke an operation
*
* @param path
* Path to operation
* @param jsonObject
* Operation parameter
* @return Return value
*/
public String invokeOperation(String path, String jsonObject) throws ProviderException;
/**
* Get string representation of endpoint for given path for debugging.
* @param path Requested path
* @return String representing requested endpoint
*/
public String getEndpointRepresentation(String path);
}