Package fr.openwide.maven.artifact.notifier.web.application.common.component

Source Code of fr.openwide.maven.artifact.notifier.web.application.common.component.AuthenticatedOnlyButton

package fr.openwide.maven.artifact.notifier.web.application.common.component;

import org.apache.wicket.markup.html.form.Button;
import org.apache.wicket.model.IModel;

import fr.openwide.maven.artifact.notifier.web.application.common.behavior.AuthenticatedOnlyBehavior;

public class AuthenticatedOnlyButton extends Button {

  private static final long serialVersionUID = -7586843919098210316L;

  public AuthenticatedOnlyButton(String id) {
    super(id);
   
    add(new AuthenticatedOnlyBehavior());
  }

  public AuthenticatedOnlyButton(String id, IModel<String> model) {
    super(id, model);
   
    add(new AuthenticatedOnlyBehavior());
  }
}
TOP

Related Classes of fr.openwide.maven.artifact.notifier.web.application.common.component.AuthenticatedOnlyButton

TOP
Copyright © 2018 www.massapi.com. 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.