com.holonplatform.vaadin7.internal.components.SecretField Maven / Gradle / Ivy
/*
* Copyright 2016-2017 Axioma srl.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.holonplatform.vaadin7.internal.components;
import com.holonplatform.vaadin7.Registration;
import com.holonplatform.vaadin7.components.Input;
import com.holonplatform.vaadin7.components.builders.SecretInputBuilder;
import com.holonplatform.vaadin7.internal.components.builders.AbstractFieldBuilder;
import com.vaadin.data.Validator.InvalidValueException;
import com.vaadin.ui.Component;
import com.vaadin.ui.Field;
import com.vaadin.ui.PasswordField;
/**
* A field that is used to enter secret text information like passwords. The entered text is not displayed on the
* screen.
*
* @since 5.0.0
*/
public class SecretField extends PasswordField implements Input, RequiredIndicatorSupport {
private static final long serialVersionUID = -288626996273192490L;
/**
* Required indicator
*/
private boolean requiredIndicatorOnly = false;
/**
* Treat empty values as null
values
*/
private boolean emptyValuesAsNull = true;
/**
* Treat blank values as null
values
*/
private boolean blankValuesAsNull = false;
/**
* Constructor
*/
public SecretField() {
super();
addStyleName("h-field");
addStyleName("h-secretfield");
}
/*
* (non-Javadoc)
* @see com.holonplatform.vaadin.components.Input#getComponent()
*/
@Override
public Component getComponent() {
return this;
}
/**
* Init field with and intenal null
value, instead of default empty String value
*/
public void initWithNullValue() {
super.setInternalValue(null);
}
/**
* Gets whether to treat empty String values as null
values
* @return true
to treat empty String values as null
values, false otherwise
*/
public boolean isEmptyValuesAsNull() {
return emptyValuesAsNull;
}
/**
* Sets whether to treat empty String values as null
values
* @param emptyValuesAsNull true
to treat empty String values as null
values, false
* otherwise
*/
public void setEmptyValuesAsNull(boolean emptyValuesAsNull) {
this.emptyValuesAsNull = emptyValuesAsNull;
}
/**
* Gets whether to treat blank String values (empty or whitespaces only) as null
values
* @return true
to treat blank String values (empty or whitespaces only) as null
values,
* false otherwise
*/
public boolean isBlankValuesAsNull() {
return blankValuesAsNull;
}
/**
* Sets whether to treat blank String values (empty or whitespaces only) as null
values
* @param blankValuesAsNull true
to treat blank String values (empty or whitespaces only) as
* null
values, false otherwise
*/
public void setBlankValuesAsNull(boolean blankValuesAsNull) {
this.blankValuesAsNull = blankValuesAsNull;
}
/*
* (non-Javadoc)
* @see com.vaadin.ui.AbstractTextField#setValue(java.lang.String)
*/
@Override
public void setValue(String newValue) throws ReadOnlyException {
super.setValue(sanitizeValue(newValue));
}
/*
* (non-Javadoc)
* @see com.vaadin.ui.AbstractTextField#setInternalValue(java.lang.String)
*/
@Override
protected void setInternalValue(String newValue) {
super.setInternalValue(sanitizeValue(newValue));
}
/**
* Checkup String value to apply empty-as-null or blank-as-null behaviours, if enabled.
* @param value Value to check
* @return Sanitized value
*/
protected String sanitizeValue(String value) {
if (value != null) {
if (isBlankValuesAsNull() && value.trim().equals("")) {
return null;
}
if (isEmptyValuesAsNull() && value.length() == 0) {
return null;
}
}
return value;
}
/*
* (non-Javadoc)
* @see com.vaadin.ui.AbstractField#setRequired(boolean)
*/
@Override
public void setRequired(boolean required) {
super.setRequired(required);
this.requiredIndicatorOnly = false;
}
/*
* (non-Javadoc)
* @see com.holonplatform.vaadin.internal.components.RequiredIndicatorSupport#setRequiredIndicatorVisible(boolean)
*/
@Override
public void setRequiredIndicatorVisible(boolean requiredIndicatorVisible) {
super.setRequired(requiredIndicatorVisible);
this.requiredIndicatorOnly = requiredIndicatorVisible;
}
/*
* (non-Javadoc)
* @see com.holonplatform.vaadin.internal.components.RequiredIndicatorSupport#isRequiredIndicatorVisible()
*/
@Override
public boolean isRequiredIndicatorVisible() {
return isRequired() || requiredIndicatorOnly;
}
/*
* (non-Javadoc)
* @see com.vaadin.ui.AbstractField#validateValue()
*/
@Override
public void validate() throws InvalidValueException {
if (requiredIndicatorOnly) {
super.validate(getValue());
} else {
super.validate();
}
}
/*
* (non-Javadoc)
* @see com.holonplatform.vaadin.components.Input#addValueChangeListener(com.holonplatform.vaadin.components.Input.
* ValueChangeListener)
*/
@Override
public Registration addValueChangeListener(
com.holonplatform.vaadin7.components.Input.ValueChangeListener listener) {
return ValueChangeNotifierRegistration.adapt(this, this, listener);
}
// Builder
/**
* Default {@link SecretInputBuilder} implementation.
*
* @since 5.0.0
*/
public static class Builder extends AbstractFieldBuilder, SecretField, SecretInputBuilder>
implements SecretInputBuilder {
/**
* Constructor
*/
public Builder() {
super(new SecretField());
getInstance().setNullRepresentation("");
getInstance().setNullSettingAllowed(true);
getInstance().initWithNullValue();
}
/*
* (non-Javadoc)
* @see com.holonplatform.vaadin.components.builders.SecretFieldBuilder#emptyValuesAsNull(boolean)
*/
@Override
public SecretInputBuilder emptyValuesAsNull(boolean enable) {
getInstance().setEmptyValuesAsNull(enable);
return this;
}
/*
* (non-Javadoc)
* @see com.holonplatform.vaadin.components.builders.SecretFieldBuilder#blankValuesAsNull(boolean)
*/
@Override
public SecretInputBuilder blankValuesAsNull(boolean enable) {
getInstance().setBlankValuesAsNull(enable);
return this;
}
/*
* (non-Javadoc)
* @see com.holonplatform.vaadin.internal.components.builders.AbstractComponentBuilder#builder()
*/
@Override
protected SecretInputBuilder builder() {
return this;
}
/*
* (non-Javadoc)
* @see
* com.holonplatform.vaadin.internal.components.builders.AbstractFieldBuilder#build(com.vaadin.ui.AbstractField)
*/
@Override
protected Input build(SecretField instance) {
return instance;
}
/*
* (non-Javadoc)
* @see com.holonplatform.vaadin.internal.components.builders.AbstractFieldBuilder#buildAsField(com.vaadin.ui.
* AbstractField)
*/
@Override
protected Field buildAsField(SecretField instance) {
return instance;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy