All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.holonplatform.vaadin7.internal.components.DefaultValidationStatusEvent Maven / Gradle / Ivy

/*
 * Copyright 2000-2017 Holon TDCN.
 * 
 * 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 java.util.Collections;
import java.util.List;
import java.util.Optional;

import com.holonplatform.core.i18n.Localizable;
import com.holonplatform.core.property.Property;
import com.holonplatform.vaadin7.components.ValueComponent;
import com.holonplatform.vaadin7.components.ValidationStatusHandler.Status;
import com.holonplatform.vaadin7.components.ValidationStatusHandler.ValidationStatusEvent;

/**
 * Default {@link ValidationStatusEvent} implementation.
 *
 * @param  Validation value type
 *
 * @since 5.0.0
 */
public class DefaultValidationStatusEvent implements ValidationStatusEvent {

	private static final long serialVersionUID = -2504760138806763843L;

	private final Status status;
	private final List errors;
	private final ValueComponent source;
	private final Property property;

	public DefaultValidationStatusEvent(Status status, List errors, ValueComponent source,
			Property property) {
		super();
		this.status = status;
		this.errors = errors;
		this.source = source;
		this.property = property;
	}

	/*
	 * (non-Javadoc)
	 * @see com.holonplatform.vaadin.components.ValidationStatusHandler.ValidationStatusEvent#getStatus()
	 */
	@Override
	public Status getStatus() {
		return status;
	}

	/*
	 * (non-Javadoc)
	 * @see com.holonplatform.vaadin.components.ValidationStatusHandler.ValidationStatusEvent#getErrors()
	 */
	@Override
	public List getErrors() {
		return (errors != null) ? errors : Collections.emptyList();
	}

	/*
	 * (non-Javadoc)
	 * @see com.holonplatform.vaadin.components.ValidationStatusHandler.ValidationStatusEvent#getProperty()
	 */
	@Override
	public Optional> getProperty() {
		return Optional.ofNullable(property);
	}

	/*
	 * (non-Javadoc)
	 * @see com.holonplatform.vaadin.components.ValidationStatusHandler.ValidationStatusEvent#getSource()
	 */
	@Override
	public Optional> getSource() {
		return Optional.ofNullable(source);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy