org.hibernate.envers.entities
Class PropertyData

java.lang.Object
  extended by org.hibernate.envers.entities.PropertyData

public class PropertyData
extends Object

Holds information on a property that is audited.

Author:
Adam Warski (adam at warski dot org)

Constructor Summary
PropertyData(String newName, PropertyData propertyData)
          Copies the given property data, except the name.
PropertyData(String name, String accessType, ModificationStore store)
           
 
Method Summary
 String getAccessType()
           
 String getName()
           
 ModificationStore getStore()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

PropertyData

public PropertyData(String newName,
                    PropertyData propertyData)
Copies the given property data, except the name.

Parameters:
newName - New name.
propertyData - Property data to copy the rest of properties from.

PropertyData

public PropertyData(String name,
                    String accessType,
                    ModificationStore store)
Parameters:
name - Name of the property.
accessType - Accessor type for this property.
store - How this property should be stored.
Method Detail

getName

public String getName()

getAccessType

public String getAccessType()

getStore

public ModificationStore getStore()


Copyright © 2008 Hibernate.org. All Rights Reserved.