Package org.wicketstuff.security.checks

Examples of org.wicketstuff.security.checks.InverseSecurityCheck


    add(new Label("welcome", "Welcome Only logged in users can see this page"));
    SecurePageLink<Void> securePageLink = new SecurePageLink<Void>("link", PageA.class);
    add(securePageLink);
    add(SecureComponentHelper.setSecurityCheck(new Label("sorry",
      "you are not allowed to go to Page A"),
      new InverseSecurityCheck(securePageLink.getSecurityCheck())));
  }
View Full Code Here

TOP

Related Classes of org.wicketstuff.security.checks.InverseSecurityCheck

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.