Spring Data Neo4j

org.springframework.data.neo4j.fieldaccess
Class IdFieldAccessorFactory.IdFieldAccessor

java.lang.Object
  extended by org.springframework.data.neo4j.fieldaccess.IdFieldAccessorFactory.IdFieldAccessor
All Implemented Interfaces:
FieldAccessor
Enclosing class:
IdFieldAccessorFactory

public static class IdFieldAccessorFactory.IdFieldAccessor
extends Object
implements FieldAccessor


Field Summary
protected  Neo4jPersistentProperty property
           
 
Constructor Summary
IdFieldAccessorFactory.IdFieldAccessor(Neo4jPersistentProperty property, Neo4jTemplate template)
           
 
Method Summary
 Object getDefaultImplementation()
          Returns a default implementation for a field or null if none is provided.
 Object getValue(Object entity)
           
 boolean isWriteable(Object entity)
           
 Object setValue(Object entity, Object newVal)
          handles field write modification.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

property

protected final Neo4jPersistentProperty property
Constructor Detail

IdFieldAccessorFactory.IdFieldAccessor

public IdFieldAccessorFactory.IdFieldAccessor(Neo4jPersistentProperty property,
                                              Neo4jTemplate template)
Method Detail

isWriteable

public boolean isWriteable(Object entity)
Specified by:
isWriteable in interface FieldAccessor
Returns:
false for read only or computed fields, true otherwise

setValue

public Object setValue(Object entity,
                       Object newVal)
Description copied from interface: FieldAccessor
handles field write modification.

Specified by:
setValue in interface FieldAccessor
Returns:
the written value or a DoReturn wrapper with the written value or null. DoReturn indicates that the aspect should not proceed to the original field access but instead return immediately.

getValue

public Object getValue(Object entity)
Specified by:
getValue in interface FieldAccessor
Returns:
the value or a DoReturn wrapper with the value for the field. DoReturn indicates that the aspect should not proceed to the original field access but instead return immediately.

getDefaultImplementation

public Object getDefaultImplementation()
Description copied from interface: FieldAccessor
Returns a default implementation for a field or null if none is provided.

This default implementation is returned in detached mode by the DetachedEntityState when the value of the field is get.

Specified by:
getDefaultImplementation in interface FieldAccessor
Returns:
a default implementation for a field or null if none is provided.

Spring Data Neo4j

Copyright © 2011 SpringSource. All Rights Reserved.