context-manager/src/test/java/org/gcube/vremanagement/contextmanager/BackendConnectorTester.java

49 lines
1.1 KiB
Java

package org.gcube.vremanagement.contextmanager;
import java.util.List;
import javax.enterprise.inject.Default;
import org.gcube.common.resources.gcore.Resource;
import org.gcube.vremanagement.contextmanager.model.collectors.BackendConnector;
@Default
public class BackendConnectorTester implements BackendConnector {
@Override
public Resource find(String resourceId) {
return null;
}
@Override
public String createContext(String contextName, String parentContextId, List<String> resourceIds) {
// TODO Auto-generated method stub
return null;
}
@Override
public boolean removeContext(String contextId) {
// TODO Auto-generated method stub
return false;
}
@Override
public boolean addResourceToContext(String contextId, Resource resource) {
// TODO Auto-generated method stub
return false;
}
@Override
public boolean removeResourceFromContext(String contextId, Resource resource) {
// TODO Auto-generated method stub
return false;
}
@Override
public boolean updateResource(Resource resource) {
// TODO Auto-generated method stub
return false;
}
}