BackrefPropertyAccessorpublic class BackrefPropertyAccessor extends Object implements PropertyAccessorRepresents a "back-reference" to the id of a collection owner. |
Fields Summary |
---|
private final String | propertyName | private final String | entityName | public static final Serializable | UNKNOWNA placeholder for a property value, indicating that
we don't know the value of the back reference |
Constructors Summary |
---|
public BackrefPropertyAccessor(String collectionRole, String entityName)Constructs a new instance of BackrefPropertyAccessor.
this.propertyName = collectionRole.substring( entityName.length() + 1 );
this.entityName = entityName;
|
|