Package org.jboss.envers

Examples of org.jboss.envers.Versioned


      }
    }

    // Checking if this property is explicitly audited or if all properties are.
    Audited aud = property.getAnnotation(Audited.class);
    Versioned ver = property.getAnnotation(Versioned.class);
    if (aud != null) {
      propertyData.setStore(aud.modStore());
      propertyData.setRelationTargetAuditMode(aud.targetAuditMode());
    } else if (ver != null) {
      propertyData.setStore(ModificationStore.FULL);
View Full Code Here

TOP

Related Classes of org.jboss.envers.Versioned

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.