blob: 9741496653a47f71c7251bbc4c234dfd7bdf580e [file] [log] [blame]
package org.eclipse.basyx.vab.directory.proxy;
import org.eclipse.basyx.vab.coder.json.connector.JSONConnector;
import org.eclipse.basyx.vab.directory.api.IVABDirectoryService;
import org.eclipse.basyx.vab.exception.provider.ProviderException;
import org.eclipse.basyx.vab.modelprovider.VABElementProxy;
import org.eclipse.basyx.vab.modelprovider.api.IModelProvider;
import org.eclipse.basyx.vab.protocol.http.connector.HTTPConnector;
public class VABDirectoryProxy implements IVABDirectoryService {
/**
* Store the URL of the registry of this proxy
*/
protected IModelProvider provider;
/**
* Constructor for a generic VAB directory proxy based on a HTTP connection
*
* @param directoryUrl
* The endpoint of the registry with a HTTP-REST interface
*/
public VABDirectoryProxy(String directoryUrl) {
this(new VABElementProxy("", new JSONConnector(new HTTPConnector(directoryUrl))));
}
/**
* Constructor for a generic VAB directory based on the registry model provider
*
* @param provider
* A model provider for the actual registry
*/
public VABDirectoryProxy(IModelProvider provider) {
this.provider = provider;
}
/**
* Adds a single entry to the directory
*/
@Override
public IVABDirectoryService addMapping(String key, String value) {
provider.createValue(key, value);
return this;
}
/**
* Deletes an entry from the directory
*/
@Override
public void removeMapping(String key) {
provider.deleteValue(key);
}
/**
* Returns a single entry in the directory
*/
@Override
public String lookup(String id) {
Object response = provider.getModelPropertyValue(id);
if (response instanceof String) {
return (String) response;
} else {
throw new ProviderException("Lookup returned unexpected object: " + response);
}
}
}