SEBSERV-376 fix also for detailed view
This commit is contained in:
parent
a99e8fb637
commit
f72e57d7c7
1 changed files with 2 additions and 2 deletions
|
@ -179,12 +179,12 @@ public class ClientConnectionDetails implements MonitoringEntry {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean grantChecked() {
|
public boolean grantChecked() {
|
||||||
return this.grantChecked;
|
return !this.checkSecurityGrant || this.grantChecked;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean grantDenied() {
|
public boolean grantDenied() {
|
||||||
return this.grantDenied;
|
return this.checkSecurityGrant && this.grantDenied;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue