Refs #11288: Made resource-registry more RESTful

Task-Url: https://support.d4science.org/issues/11288

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/information-system/resource-registry@169078 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Luca Frosini 2018-06-12 15:13:29 +00:00
parent 4f07e57030
commit f4b358be2c
3 changed files with 11 additions and 5 deletions

View File

@ -429,10 +429,16 @@ public abstract class ERManagement<ERType extends ER, El extends Element> {
}
}
public boolean exists()
public boolean exists(boolean writer)
throws NotFoundException, AvailableInAnotherContextException, ResourceRegistryException {
try {
orientGraph = getWorkingContext().getGraph(PermissionMode.READER);
if(writer) {
// Exists is used to understand if it is a create or update.
// In any case the we need writing right on this instance
orientGraph = getWorkingContext().getGraph(PermissionMode.WRITER);
}else {
orientGraph = getWorkingContext().getGraph(PermissionMode.READER);
}
getElement();

View File

@ -209,7 +209,7 @@ public class Access {
try {
erManagement.setUUID(UUID.fromString(uuid));
boolean found = erManagement.exists();
boolean found = erManagement.exists(false);
if(found) {
return Response.status(Status.NO_CONTENT).build();
} else {

View File

@ -99,7 +99,7 @@ public class InstancesManager {
try {
erManagement.setUUID(UUID.fromString(uuid));
boolean found = erManagement.exists();
boolean found = erManagement.exists(false);
if(found) {
return Response.status(Status.NO_CONTENT).build();
} else {
@ -162,7 +162,7 @@ public class InstancesManager {
boolean create = false;
try {
erManagement.exists();
erManagement.exists(true);
} catch(NotFoundException e) {
create = true;
}