Package org.apache.wicket.security.checks

Examples of org.apache.wicket.security.checks.ComponentSecurityCheck


   *            the model
   */
  public SecureAjaxLink(final String id, final IModel<T> model)
  {
    super(id, model);
    setSecurityCheck(new ComponentSecurityCheck(this));
  }
View Full Code Here


   *            wicket id as found in the HTML
   */
  public SecureAjaxLink(final String id)
  {
    super(id);
    setSecurityCheck(new ComponentSecurityCheck(this));
  }
View Full Code Here

   * @param id
   */
  public SecureTextField(String id)
  {
    super(id);
    setSecurityCheck(new ComponentSecurityCheck(this));
  }
View Full Code Here

   * @param type
   */
  public SecureTextField(String id, Class<T> type)
  {
    super(id, type);
    setSecurityCheck(new ComponentSecurityCheck(this));
  }
View Full Code Here

   * @param object
   */
  public SecureTextField(String id, IModel<T> object)
  {
    super(id, object);
    setSecurityCheck(new ComponentSecurityCheck(this));
  }
View Full Code Here

   *            model.
   */
  public SecureTextField(String id, ISecureModel<T> model, boolean checkModel)
  {
    super(id, model);
    setSecurityCheck(new ComponentSecurityCheck(this, checkModel));
  }
View Full Code Here

   * @param type
   */
  public SecureTextField(String id, IModel<T> model, Class<T> type)
  {
    super(id, model, type);
    setSecurityCheck(new ComponentSecurityCheck(this));
  }
View Full Code Here

   * @param type
   */
  public SecureTextField(String id, ISecureModel<T> model, boolean checkModel, Class<T> type)
  {
    super(id, model, type);
    setSecurityCheck(new ComponentSecurityCheck(this, checkModel));
  }
View Full Code Here

   * @param id
   */
  public SecureForm(String id)
  {
    super(id);
    setSecurityCheck(new ComponentSecurityCheck(this));
  }
View Full Code Here

   * @param model
   */
  public SecureForm(String id, IModel<T> model)
  {
    super(id, model);
    setSecurityCheck(new ComponentSecurityCheck(this));
  }
View Full Code Here

TOP

Related Classes of org.apache.wicket.security.checks.ComponentSecurityCheck

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.