CLOUDSTACK-6617: [Automation] detach / resize volume test cases failing

with permission error.
This commit is contained in:
Min Chen 2014-05-09 16:39:23 -07:00
parent 5f8641e908
commit 5c3858b504
1 changed files with 6 additions and 6 deletions

View File

@ -298,16 +298,16 @@ public class RoleBasedEntityAccessChecker extends DomainChecker implements Secur
boolean allow;
String denyMsg;
public CheckAccessResult(boolean allow) {
this(allow, null);
public CheckAccessResult(boolean aw) {
this(aw, null);
}
public CheckAccessResult(String msg) {
this(false, msg);
}
public CheckAccessResult(boolean allow, String msg) {
allow = allow;
public CheckAccessResult(boolean aw, String msg) {
allow = aw;
denyMsg = msg;
}
@ -315,8 +315,8 @@ public class RoleBasedEntityAccessChecker extends DomainChecker implements Secur
return allow;
}
public void setAllow(boolean allow) {
this.allow = allow;
public void setAllow(boolean aw) {
allow = aw;
}