Examples of excluded()


Examples of org.broadleafcommerce.common.presentation.AdminPresentationCollection.excluded()

        AdminPresentationCollectionOverride override = presentationCollectionOverrides.get(propertyName);
        if (override != null) {
            AdminPresentationCollection annot = override.value();
            if (annot != null) {
                String testKey = prefix + key;
                if ((testKey.startsWith(propertyName + ".") || testKey.equals(propertyName)) && annot.excluded()) {
                    FieldMetadata metadata = mergedProperties.get(key);
                    if (LOG.isDebugEnabled()) {
                        LOG.debug("buildAdminPresentationCollectionOverride:Excluding " + key + "because an override annotation declared " + testKey + "to be excluded");
                    }
                    metadata.setExcluded(true);
View Full Code Here

Examples of org.broadleafcommerce.common.presentation.AdminPresentationMap.excluded()

        AdminPresentationMapOverride override = presentationMapOverrides.get(propertyName);
        if (override != null) {
            AdminPresentationMap annot = override.value();
            if (annot != null) {
                String testKey = prefix + key;
                if ((testKey.startsWith(propertyName + ".") || testKey.equals(propertyName)) && annot.excluded()) {
                    FieldMetadata metadata = mergedProperties.get(key);
                    if (LOG.isDebugEnabled()) {
                        LOG.debug("buildAdminPresentationMapOverride:Excluding " + key + "because an override annotation declared " + testKey + "to be excluded");
                    }
                    metadata.setExcluded(true);
View Full Code Here

Examples of org.hibernate.annotations.OptimisticLock.excluded()

    prop.setUpdateable( updatable );
    OptimisticLock lockAnn = property != null ?
        property.getAnnotation( OptimisticLock.class ) :
        null;
    if ( lockAnn != null ) {
      prop.setOptimisticLocked( !lockAnn.excluded() );
      //TODO this should go to the core as a mapping validation checking
      if ( lockAnn.excluded() && (
          property.isAnnotationPresent( javax.persistence.Version.class )
              || property.isAnnotationPresent( Id.class )
              || property.isAnnotationPresent( EmbeddedId.class ) ) ) {
View Full Code Here

Examples of org.hibernate.annotations.OptimisticLock.excluded()

        property.getAnnotation( OptimisticLock.class ) :
        null;
    if ( lockAnn != null ) {
      prop.setOptimisticLocked( !lockAnn.excluded() );
      //TODO this should go to the core as a mapping validation checking
      if ( lockAnn.excluded() && (
          property.isAnnotationPresent( javax.persistence.Version.class )
              || property.isAnnotationPresent( Id.class )
              || property.isAnnotationPresent( EmbeddedId.class ) ) ) {
        throw new AnnotationException( "@OptimisticLock.exclude=true incompatible with @Id, @EmbeddedId and @Version: "
            + StringHelper.qualify( holder.getPath(), name ) );
View Full Code Here

Examples of org.hibernate.annotations.OptimisticLock.excluded()

      );
    }

    collection.setMutable( !property.isAnnotationPresent( Immutable.class ) );
    OptimisticLock lockAnn = property.getAnnotation( OptimisticLock.class );
    if ( lockAnn != null ) collection.setOptimisticLocked( !lockAnn.excluded() );
    Persister persisterAnn = property.getAnnotation( Persister.class );
    if ( persisterAnn != null ) collection.setCollectionPersisterClass( persisterAnn.impl() );

    // set ordering
    if ( orderBy != null ) collection.setOrderBy( orderBy );
View Full Code Here

Examples of org.hibernate.annotations.OptimisticLock.excluded()

    //work on association
    boolean isMappedBy = !BinderHelper.isEmptyAnnotationValue( mappedBy );

    final OptimisticLock lockAnn = property.getAnnotation( OptimisticLock.class );
    final boolean includeInOptimisticLockChecks = ( lockAnn != null )
        ? ! lockAnn.excluded()
        : ! isMappedBy;
    collection.setOptimisticLocked( includeInOptimisticLockChecks );

    Persister persisterAnn = property.getAnnotation( Persister.class );
    if ( persisterAnn != null ) {
View Full Code Here

Examples of org.hibernate.annotations.OptimisticLock.excluded()

      final OptimisticLock lockAnn = property != null
          ? property.getAnnotation( OptimisticLock.class )
          : null;
      if ( lockAnn != null ) {
        //TODO this should go to the core as a mapping validation checking
        if ( lockAnn.excluded() && (
            property.isAnnotationPresent( javax.persistence.Version.class )
                || property.isAnnotationPresent( Id.class )
                || property.isAnnotationPresent( EmbeddedId.class ) ) ) {
          throw new AnnotationException(
              "@OptimisticLock.exclude=true incompatible with @Id, @EmbeddedId and @Version: "
View Full Code Here

Examples of org.hibernate.annotations.OptimisticLock.excluded()

          );
        }
      }
      final boolean isOwnedValue = !isToOneValue( value ) || insertable; // && updatable as well???
      final boolean includeInOptimisticLockChecks = ( lockAnn != null )
          ? ! lockAnn.excluded()
          : isOwnedValue;
      prop.setOptimisticLocked( includeInOptimisticLockChecks );
    }

    LOG.tracev( "Cascading {0} with {1}", name, cascade );
View Full Code Here

Examples of org.hibernate.annotations.OptimisticLock.excluded()

    prop.setUpdateable( updatable );
    OptimisticLock lockAnn = property != null ?
        property.getAnnotation( OptimisticLock.class ) :
        null;
    if ( lockAnn != null ) {
      prop.setOptimisticLocked( !lockAnn.excluded() );
      //TODO this should go to the core as a mapping validation checking
      if ( lockAnn.excluded() && (
          property.isAnnotationPresent( javax.persistence.Version.class )
              || property.isAnnotationPresent( Id.class )
              || property.isAnnotationPresent( EmbeddedId.class ) ) ) {
View Full Code Here

Examples of org.hibernate.annotations.OptimisticLock.excluded()

        property.getAnnotation( OptimisticLock.class ) :
        null;
    if ( lockAnn != null ) {
      prop.setOptimisticLocked( !lockAnn.excluded() );
      //TODO this should go to the core as a mapping validation checking
      if ( lockAnn.excluded() && (
          property.isAnnotationPresent( javax.persistence.Version.class )
              || property.isAnnotationPresent( Id.class )
              || property.isAnnotationPresent( EmbeddedId.class ) ) ) {
        throw new AnnotationException(
            "@OptimisticLock.exclude=true incompatible with @Id, @EmbeddedId and @Version: "
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.