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

com.helger.jaxb.validation.IValidationEventHandler Maven / Gradle / Ivy

There is a newer version: 9.5.5
Show newest version
/**
 * Copyright (C) 2014-2018 Philip Helger (www.helger.com)
 * philip[at]helger[dot]com
 *
 * 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.helger.jaxb.validation;

import java.io.Serializable;

import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import javax.xml.bind.ValidationEventHandler;

/**
 * An extended version of {@link ValidationEventHandler} with chaining
 * possibilities.
 *
 * @author Philip Helger
 * @since 8.5.1
 */
@FunctionalInterface
public interface IValidationEventHandler extends ValidationEventHandler, Serializable
{
  @Nonnull
  default IValidationEventHandler andThen (@Nullable final ValidationEventHandler aOther)
  {
    return and (this, aOther);
  }

  /**
   * Create an instance of {@link IValidationEventHandler} that invokes both
   * passed event handlers.
   *
   * @param aOne
   *        The first event handler. May be null.
   * @param aOther
   *        The second event handler. May be null.
   * @return Never null.
   * @since 8.6.0
   */
  @Nonnull
  static IValidationEventHandler and (@Nullable final ValidationEventHandler aOne,
                                      @Nullable final ValidationEventHandler aOther)
  {
    if (aOne != null)
    {
      if (aOther != null)
        return x -> {
          if (!aOne.handleEvent (x))
          {
            // We should not continue
            return false;
          }
          return aOther.handleEvent (x);
        };
      return x -> aOne.handleEvent (x);
    }

    if (aOther != null)
      return x -> aOther.handleEvent (x);

    return x -> true;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy