Package org.apache.cayenne.map
Class Relationship
java.lang.Object
org.apache.cayenne.map.Relationship
- All Implemented Interfaces:
Serializable
,CayenneMapEntry
,XMLSerializable
- Direct Known Subclasses:
DbRelationship
,ObjRelationship
public abstract class Relationship
extends Object
implements CayenneMapEntry, XMLSerializable, Serializable
Defines a relationship between two entities. In a DataMap graph relationships represent
"arcs" connecting entity "nodes". Relationships are directional, i.e. they have a
notion of source and target entity. This makes DataMap a "digraph".
- See Also:
-
Field Summary
-
Constructor Summary
ConstructorDescriptionCreates an unnamed relationship.Relationship
(String name) Creates a named relationship. -
Method Summary
Modifier and TypeMethodDescriptiongetName()
Returns the name property of this object.Returns the parent map.abstract Relationship
Returns a "complimentary" relationship going in the opposite direction.Returns relationship source entity.abstract Entity
Returns a target entity of the relationship.Returns the name of a target entity.abstract boolean
Returns if relationship is mandatoryboolean
boolean
isToMany()
Returns a boolean value that determines relationship multiplicity.void
void
Stores the parent map.void
setRuntime
(boolean synthetic) void
setSourceEntity
(Entity sourceEntity) Sets relationship source entity.void
setTargetEntityName
(String targetEntityName) Sets the name of relationship target entity.void
setTargetEntityName
(Entity targetEntity) Sets relationship target entity.toString()
Overrides Object.toString() to return informative description.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.apache.cayenne.util.XMLSerializable
encodeAsXML
-
Field Details
-
name
-
sourceEntity
-
targetEntityName
-
toMany
protected boolean toMany -
runtime
protected boolean runtimeA flag that specifies whether a Relationship was mapped by the user or added dynamically by Cayenne runtime.- Since:
- 3.0
-
-
Constructor Details
-
Relationship
public Relationship()Creates an unnamed relationship. -
Relationship
Creates a named relationship.
-
-
Method Details
-
getName
Description copied from interface:CayenneMapEntry
Returns the name property of this object.- Specified by:
getName
in interfaceCayenneMapEntry
- Returns:
- name of this entry.
-
setName
-
getSourceEntity
Returns relationship source entity. -
setSourceEntity
Sets relationship source entity. -
getTargetEntity
Returns a target entity of the relationship. -
setTargetEntityName
Sets relationship target entity. Internally callssetTargetEntityName
. -
getTargetEntityName
Returns the name of a target entity. -
setTargetEntityName
Sets the name of relationship target entity. -
isToMany
public boolean isToMany()Returns a boolean value that determines relationship multiplicity. This defines semantics of the connection between two nodes described by the source and target entities. E.g. to-many relationship between two Persistent object classes means that a source object would have a collection of target objects. This is a read-only property. -
getParent
Description copied from interface:CayenneMapEntry
Returns the parent map.- Specified by:
getParent
in interfaceCayenneMapEntry
-
setParent
Description copied from interface:CayenneMapEntry
Stores the parent map.- Specified by:
setParent
in interfaceCayenneMapEntry
-
toString
Overrides Object.toString() to return informative description. -
isRuntime
public boolean isRuntime()- Since:
- 3.0
-
setRuntime
public void setRuntime(boolean synthetic) - Since:
- 3.0
-
getReverseRelationship
Returns a "complimentary" relationship going in the opposite direction. Returns null if no such relationship is found.- Since:
- 3.1
-
isMandatory
public abstract boolean isMandatory()Returns if relationship is mandatory- Since:
- 3.1
-