> On Aug 23, 2016, at 4:34 PM, Damianos Metallidis <[email protected]>
> wrote:
>
>
> One suggestion would be to edit some variables in the Perm page and not be
> able to open,thus making it un-able to open and then fail but i am not sure
> if this is the best way.
> Can you please suggest if there is a better way?
>
Damian, can’t think of a way w/ config but you can alter a page’s constructor
and throw an exception, for example:
public PermListPanel( String id, final boolean isAdmin )
{
...
throw new RuntimeException( “stop here" );
}
and redeploy war.