Example usage for com.vaadin.ui PasswordField subclass-usage

List of usage examples for com.vaadin.ui PasswordField subclass-usage

Introduction

In this page you can find the example usage for com.vaadin.ui PasswordField subclass-usage.

Usage

From source file com.foc.vaadin.gui.components.FVPasswordField.java

@SuppressWarnings({ "serial", "unchecked" })
public class FVPasswordField extends PasswordField implements FocXMLGuiComponent {

    private IFocData focData = null;
    private Attributes attributes = null;
    private FocXMLGuiComponentDelegate delegate = null;

From source file com.haulmont.cuba.web.toolkit.ui.CubaPasswordField.java

public class CubaPasswordField extends PasswordField {

    public CubaPasswordField() {
        setValidationVisible(false);
        setShowBufferedSourceException(false);
        setShowErrorForDisabledState(false);

From source file com.haulmont.cuba.web.widgets.CubaPasswordField.java

public class CubaPasswordField extends PasswordField {

    public CubaPasswordField() {
        //        vaadin8
        //        setValidationVisible(false);
        //        setShowBufferedSourceException(false);

From source file de.unioninvestment.eai.portal.portlet.crud.ui.security.SecurePasswordField.java

/**
 * This is a more secure variant of {@link PasswordField}. The Password is not
 * sent to the client, but will be sent in plaintext to the server if changed,
 * so securing the connection via encryption is recommended.
 * 
 * @author carsten.mjartan

From source file org.jumpmind.vaadin.ui.common.ImmediateUpdatePasswordField.java

public abstract class ImmediateUpdatePasswordField extends PasswordField {

    private static final long serialVersionUID = 1L;

    boolean initialized = false;

From source file org.panifex.web.vaadin.runtime.html.VaadinPasswordField.java

/**
 * A field that is used to enter secret text information like passwords. The entered text is
 * not displayed on the screen.
 */
public class VaadinPasswordField extends PasswordField implements org.panifex.web.spi.html.PasswordField {

From source file org.vaadin.viritin.fields.MPasswordField.java

/**
 * A an extension to basic Vaadin PasswordField. Uses the only sane default for
 * "nullRepresentation" (""), adds support for "eager validation" (~ validate
 * while typing) and adds some fluent APIs.
 */
public class MPasswordField extends PasswordField implements EagerValidateable {

From source file ui.textField.LifetimePasswordField.java

/**
 *
 * @author lifetime
 */
public class LifetimePasswordField extends PasswordField {
    private PasswordField password;