Examples of ExecutableDescriptorImpl


Examples of org.hibernate.validator.internal.metadata.descriptor.ExecutableDescriptorImpl

    return returnValueMetaData;
  }

  @Override
  public ExecutableDescriptorImpl asDescriptor(boolean defaultGroupSequenceRedefined, List<Class<?>> defaultGroupSequence) {
    return new ExecutableDescriptorImpl(
        getType(),
        getName(),
        asDescriptors( getCrossParameterConstraints() ),
        returnValueMetaData.asDescriptor(
            defaultGroupSequenceRedefined,
View Full Code Here

Examples of org.hibernate.validator.internal.metadata.descriptor.ExecutableDescriptorImpl

  }

  @Override
  public ElementDescriptor asDescriptor(boolean defaultGroupSequenceRedefined, List<Class<?>> defaultGroupSequence) {

    return new ExecutableDescriptorImpl(
        getKind() == ConstraintMetaDataKind.METHOD ? Kind.METHOD : Kind.CONSTRUCTOR,
        getType(),
        getName(),
        asDescriptors( getCrossParameterConstraints() ),
        returnValueMetaData.asDescriptor(
View Full Code Here

Examples of org.hibernate.validator.internal.metadata.descriptor.ExecutableDescriptorImpl

    return returnValueMetaData;
  }

  @Override
  public ExecutableDescriptorImpl asDescriptor(boolean defaultGroupSequenceRedefined, List<Class<?>> defaultGroupSequence) {
    return new ExecutableDescriptorImpl(
        getType(),
        getName(),
        asDescriptors( getCrossParameterConstraints() ),
        returnValueMetaData.asDescriptor(
            defaultGroupSequenceRedefined,
View Full Code Here

Examples of org.hibernate.validator.internal.metadata.descriptor.ExecutableDescriptorImpl

    return returnValueMetaData;
  }

  @Override
  public ExecutableDescriptorImpl asDescriptor(boolean defaultGroupSequenceRedefined, List<Class<?>> defaultGroupSequence) {
    return new ExecutableDescriptorImpl(
        getType(),
        getName(),
        asDescriptors( getCrossParameterConstraints() ),
        returnValueMetaData.asDescriptor(
            defaultGroupSequenceRedefined,
View Full Code Here

Examples of org.hibernate.validator.internal.metadata.descriptor.ExecutableDescriptorImpl

    return returnValueMetaData;
  }

  @Override
  public ExecutableDescriptorImpl asDescriptor(boolean defaultGroupSequenceRedefined, List<Class<?>> defaultGroupSequence) {
    return new ExecutableDescriptorImpl(
        getType(),
        getName(),
        asDescriptors( getCrossParameterConstraints() ),
        returnValueMetaData.asDescriptor(
            defaultGroupSequenceRedefined,
View Full Code Here

Examples of org.hibernate.validator.internal.metadata.descriptor.ExecutableDescriptorImpl

  }

  @Override
  public ElementDescriptor asDescriptor(boolean defaultGroupSequenceRedefined, List<Class<?>> defaultGroupSequence) {

    return new ExecutableDescriptorImpl(
        getKind() == ConstraintMetaDataKind.METHOD ? Kind.METHOD : Kind.CONSTRUCTOR,
        getType(),
        getName(),
        asDescriptors( getConstraints() ),
        returnValueAsDescriptor( defaultGroupSequenceRedefined, defaultGroupSequence ),
View Full Code Here

Examples of org.hibernate.validator.internal.metadata.descriptor.ExecutableDescriptorImpl

    return returnValueMetaData;
  }

  @Override
  public ExecutableDescriptorImpl asDescriptor(boolean defaultGroupSequenceRedefined, List<Class<?>> defaultGroupSequence) {
    return new ExecutableDescriptorImpl(
        getType(),
        getName(),
        asDescriptors( getCrossParameterConstraints() ),
        returnValueMetaData.asDescriptor(
            defaultGroupSequenceRedefined,
View Full Code Here

Examples of org.hibernate.validator.internal.metadata.descriptor.ExecutableDescriptorImpl

  @Override
  public ElementDescriptor asDescriptor(boolean defaultGroupSequenceRedefined, List<Class<?>> defaultGroupSequence) {

    if ( super.getKind() == ConstraintMetaDataKind.METHOD ) {
      return new ExecutableDescriptorImpl(
          getType(),
          getName(),
          asDescriptors( getConstraints() ),
          returnValueAsDescriptor( defaultGroupSequenceRedefined, defaultGroupSequence ),
          parametersAsDescriptors( defaultGroupSequenceRedefined, defaultGroupSequence ),
          defaultGroupSequenceRedefined,
          defaultGroupSequence
      );
    }
    else {
      return new ExecutableDescriptorImpl(
          getType(),
          asDescriptors( getConstraints() ),
          returnValueAsDescriptor( defaultGroupSequenceRedefined, defaultGroupSequence ),
          parametersAsDescriptors( defaultGroupSequenceRedefined, defaultGroupSequence ),
          defaultGroupSequenceRedefined,
View Full Code Here

Examples of org.hibernate.validator.internal.metadata.descriptor.ExecutableDescriptorImpl

    return returnValueMetaData;
  }

  @Override
  public ExecutableDescriptorImpl asDescriptor(boolean defaultGroupSequenceRedefined, List<Class<?>> defaultGroupSequence) {
    return new ExecutableDescriptorImpl(
        getType(),
        getName(),
        asDescriptors( getCrossParameterConstraints() ),
        returnValueMetaData.asDescriptor(
            defaultGroupSequenceRedefined,
View Full Code Here

Examples of org.hibernate.validator.internal.metadata.descriptor.ExecutableDescriptorImpl

    return returnValueMetaData;
  }

  @Override
  public ExecutableDescriptorImpl asDescriptor(boolean defaultGroupSequenceRedefined, List<Class<?>> defaultGroupSequence) {
    return new ExecutableDescriptorImpl(
        getType(),
        getName(),
        asDescriptors( getCrossParameterConstraints() ),
        returnValueMetaData.asDescriptor(
            defaultGroupSequenceRedefined,
View Full Code Here
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.