Package org.hibernate.validator.internal.metadata.raw

Examples of org.hibernate.validator.internal.metadata.raw.ConstrainedExecutable


            constructor,
            constructorType.getIgnoreAnnotations()
        );
      }

      ConstrainedExecutable constrainedExecutable = parseExecutableType(
          defaultPackage,
          constructorType.getParameter(),
          constructorType.getCrossParameter(),
          constructorType.getReturnValue(),
          constructorExecutableElement,
View Full Code Here


        defaultPackage,
        constraintHelper,
        annotationProcessingOptions
    );

    return new ConstrainedExecutable(
        ConfigurationSource.XML,
        new ExecutableConstraintLocation( executableElement ),
        parameterMetaData,
        crossParameterConstraints,
        returnValueConstraints,
View Full Code Here

      Map<Class<?>, Class<?>> groupConversions = GroupConversionBuilder.buildGroupConversionMap(
          getterType.getConvertGroup(),
          defaultPackage
      );

      ConstrainedExecutable constrainedGetter = new ConstrainedExecutable(
          ConfigurationSource.XML,
          constraintLocation,
          Collections.<ConstrainedParameter>emptyList(),
          Collections.<MetaConstraint<?>>emptySet(),
          metaConstraints,
View Full Code Here

              constraintHelper
          );
          break;
        case CONSTRUCTOR:
        case METHOD:
          ConstrainedExecutable constrainedExecutable = (ConstrainedExecutable) constrainedElement;
          methodBuilder = new ExecutableMetaData.Builder(
              beanClass,
              constrainedExecutable,
              constraintHelper,
              executableHelper
          );

          if ( constrainedExecutable.isGetterMethod() ) {
            propertyBuilder = new PropertyMetaData.Builder(
                beanClass,
                constrainedExecutable,
                constraintHelper
            );
View Full Code Here

      if ( propertyBuilder != null && propertyBuilder.accepts( constrainedElement ) ) {
        propertyBuilder.add( constrainedElement );

        if ( !added && constrainedElement.getKind() == ConstrainedElementKind.METHOD && methodBuilder == null ) {
          ConstrainedExecutable constrainedMethod = (ConstrainedExecutable) constrainedElement;
          methodBuilder = new ExecutableMetaData.Builder(
              beanClass,
              constrainedMethod,
              constraintHelper,
              executableHelper
View Full Code Here

    }

    @Override
    public void add(ConstrainedElement constrainedElement) {
      super.add( constrainedElement );
      ConstrainedExecutable constrainedExecutable = (ConstrainedExecutable) constrainedElement;

      constrainedExecutables.add( constrainedExecutable );
      isConstrained = isConstrained || constrainedExecutable.isConstrained();
      crossParameterConstraints.addAll( constrainedExecutable.getCrossParameterConstraints() );

      addToExecutablesByDeclaringType( constrainedExecutable );
    }
View Full Code Here

     *
     * @param executable The executable to merge.
     */
    private void addToExecutablesByDeclaringType(ConstrainedExecutable executable) {
      Class<?> beanClass = executable.getLocation().getBeanClass();
      ConstrainedExecutable mergedExecutable = executablesByDeclaringType.get( beanClass );

      if ( mergedExecutable != null ) {
        mergedExecutable = mergedExecutable.merge( executable );
      }
      else {
        mergedExecutable = executable;
      }

      executablesByDeclaringType.put( beanClass, mergedExecutable.merge( executable ) );
    }
View Full Code Here

                cascadesByParameter.containsKey( i )
            )
        );
      }

      ConstrainedExecutable methodMetaData = new ConstrainedExecutable(
          ConfigurationSource.API,
          new ExecutableConstraintLocation( oneMethod ),
          parameterMetaDataList,
          Collections.<MetaConstraint<?>>emptySet(),
          asMetaConstraints( constraintsByParameter.get( null ) ),
View Full Code Here

    Set<MetaConstraint<?>> crossParameterConstraints = convertToMetaConstraints(
        executableConstraints.get( ConstraintType.CROSS_PARAMETER ),
        executable
    );

    return new ConstrainedExecutable(
        ConfigurationSource.ANNOTATION,
        new ExecutableConstraintLocation( executable, null ),
        parameterConstraints,
        crossParameterConstraints,
        returnValueConstraints,
View Full Code Here

    }

    @Override
    public void add(ConstrainedElement constrainedElement) {
      super.add( constrainedElement );
      ConstrainedExecutable constrainedExecutable = (ConstrainedExecutable) constrainedElement;

      constrainedExecutables.add( constrainedExecutable );
      isConstrained = isConstrained || constrainedExecutable.isConstrained();
      crossParameterConstraints.addAll( constrainedExecutable.getCrossParameterConstraints() );
    }
View Full Code Here

TOP

Related Classes of org.hibernate.validator.internal.metadata.raw.ConstrainedExecutable

Copyright © 2018 www.massapicom. 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.