Package org.hibernate.validator.internal.metadata.aggregated

Source Code of org.hibernate.validator.internal.metadata.aggregated.ParameterMetaData$Builder

/*
* JBoss, Home of Professional Open Source
* Copyright 2011, Red Hat, Inc. and/or its affiliates, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* 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 org.hibernate.validator.internal.metadata.aggregated;

import java.util.List;
import java.util.Set;

import org.hibernate.validator.internal.metadata.core.ConstraintHelper;
import org.hibernate.validator.internal.metadata.core.MetaConstraint;
import org.hibernate.validator.internal.metadata.descriptor.ParameterDescriptorImpl;
import org.hibernate.validator.internal.metadata.raw.ConstrainedElement;
import org.hibernate.validator.internal.metadata.raw.ConstrainedElement.ConstrainedElementKind;
import org.hibernate.validator.internal.metadata.raw.ConstrainedParameter;
import org.hibernate.validator.method.metadata.ParameterDescriptor;

import static org.hibernate.validator.internal.util.CollectionHelper.newHashSet;

/**
* <p>
* An aggregated view of the constraint related meta data for a single method
* parameter.
* </p>
*
* @author Gunnar Morling
*/
public class ParameterMetaData extends AbstractConstraintMetaData {

  private final int index;

  /**
   * @param index the parameter index
   * @param name the parameter name
   * @param type the parameter type
   * @param constraints the constraints defined for this parameter
   * @param isCascading should cascading constraints be evaluated. Returns {@code true} is the constrained element
   * is marked for cascaded validation ({@code @Valid}), {@code false} otherwise.
   */
  private ParameterMetaData(int index, String name, Class<?> type, Set<MetaConstraint<?>> constraints, boolean isCascading) {
    super(
        name,
        type,
        constraints,
        ConstraintMetaDataKind.PARAMETER,
        isCascading,
        !constraints.isEmpty() || isCascading
    );

    this.index = index;
  }

  public int getIndex() {
    return index;
  }

  public ParameterDescriptor asDescriptor(boolean defaultGroupSequenceRedefined, List<Class<?>> defaultGroupSequence) {
    return new ParameterDescriptorImpl(
        getType(),
        index,
        asDescriptors( getConstraints() ),
        isCascading(),
        defaultGroupSequenceRedefined,
        defaultGroupSequence
    );
  }

  public static class Builder extends MetaDataBuilder {

    private final Class<?> rootClass;

    private final Class<?> parameterType;

    private final int parameterIndex;

    private final Set<MetaConstraint<?>> constraints = newHashSet();

    private String name;

    private boolean isCascading = false;

    public Builder(Class<?> rootClass, ConstrainedParameter constrainedParameter, ConstraintHelper constraintHelper) {

      super( constraintHelper );

      this.rootClass = rootClass;
      this.parameterType = constrainedParameter.getLocation().getParameterType();
      this.parameterIndex = constrainedParameter.getLocation().getParameterIndex();

      add( constrainedParameter );
    }

    @Override
    public boolean accepts(ConstrainedElement constrainedElement) {

      if ( constrainedElement.getKind() != ConstrainedElementKind.PARAMETER ) {
        return false;
      }

      return ( (ConstrainedParameter) constrainedElement ).getLocation().getParameterIndex() == parameterIndex;
    }

    @Override
    public void add(ConstrainedElement constrainedElement) {

      ConstrainedParameter constrainedParameter = (ConstrainedParameter) constrainedElement;

      constraints.addAll( constrainedParameter.getConstraints() );

      if ( name == null ) {
        name = constrainedParameter.getParameterName();
      }

      isCascading = isCascading || constrainedParameter.isCascading();
    }

    @Override
    public ParameterMetaData build() {

      return new ParameterMetaData(
          parameterIndex,
          name,
          parameterType,
          adaptOriginsAndImplicitGroups( rootClass, constraints ),
          isCascading
      );
    }

  }

}
TOP

Related Classes of org.hibernate.validator.internal.metadata.aggregated.ParameterMetaData$Builder

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.