Skip to content
Snippets Groups Projects
Commit f1be3b88 authored by juanf's avatar juanf
Browse files

SSDM-4824 : V3 Roles bugfix, Confirm/Revert deletions.

SVN: 37808
parent 7e5c7853
No related branches found
No related tags found
No related merge requests found
...@@ -16,6 +16,8 @@ ...@@ -16,6 +16,8 @@
package ch.ethz.sis.openbis.generic.asapi.v3.exceptions; package ch.ethz.sis.openbis.generic.asapi.v3.exceptions;
import java.util.List;
import ch.ethz.sis.openbis.generic.asapi.v3.dto.common.id.IObjectId; import ch.ethz.sis.openbis.generic.asapi.v3.dto.common.id.IObjectId;
import ch.systemsx.cisd.common.exceptions.UserFailureException; import ch.systemsx.cisd.common.exceptions.UserFailureException;
...@@ -29,15 +31,38 @@ public class UnauthorizedObjectAccessException extends UserFailureException ...@@ -29,15 +31,38 @@ public class UnauthorizedObjectAccessException extends UserFailureException
private IObjectId objectId; private IObjectId objectId;
private List<? extends IObjectId> objectIds;
public UnauthorizedObjectAccessException(IObjectId id) public UnauthorizedObjectAccessException(IObjectId id)
{ {
super("Access denied to object with " + id.getClass().getSimpleName() + " = [" + id + "]."); super("Access denied to object with " + id.getClass().getSimpleName() + " = [" + id + "].");
this.objectId = id; this.objectId = id;
} }
public UnauthorizedObjectAccessException(List<? extends IObjectId> ids)
{
super("Access denied to one of the " + ids.size() + " object/s for the operation = [" + truncateString(ids.toString(), 100) + "].");
this.objectIds = ids;
}
private static String truncateString(String string, int maxSize)
{
String truncatedString = string.substring(0, Math.min(string.length(), maxSize));
if (truncatedString.length() < string.length())
{
truncatedString += " ...";
}
return truncatedString;
}
public IObjectId getObjectId() public IObjectId getObjectId()
{ {
return objectId; return objectId;
} }
public List<? extends IObjectId> getObjectIds()
{
return objectIds;
}
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment