Interface InsertManyToManyRelationRecord
-
- All Superinterfaces:
Record,RelationRecord
- All Known Subinterfaces:
InsertOneToManyRelationRecord,RemoveOneToManyRelationsRecord
- All Known Implementing Classes:
DefaultInsertManyToManyRelationRecord,DefaultInsertOneToManyRelationRecord,DefaultRemoveOneToManyRelationsRecord
public interface InsertManyToManyRelationRecord extends RelationRecord
Insert relation record with target Pk and order information
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PKgetSourcePk()Gets source PK.java.lang.IntegergetSourceToTargetPosition()Gets source to target position for ordering.PKgetTargetPk()Gets target PK.java.lang.IntegergetTargetToSourcePosition()Gets target to source position for ordering.voidsetSourceToTargetPosition(java.lang.Integer position)Sets the source to target position.voidsetTargetToSourcePosition(java.lang.Integer position)Sets the target to source position.-
Methods inherited from interface de.hybris.platform.directpersistence.record.RelationRecord
isSrcToTgt
-
-
-
-
Method Detail
-
getSourcePk
PK getSourcePk()
Gets source PK.
-
getTargetPk
PK getTargetPk()
Gets target PK.
-
getSourceToTargetPosition
java.lang.Integer getSourceToTargetPosition()
Gets source to target position for ordering.- Returns:
- source to target position. Could be
nullif position is not known or not applicable
-
setSourceToTargetPosition
void setSourceToTargetPosition(java.lang.Integer position)
Sets the source to target position.- Parameters:
position- Source to target position
-
getTargetToSourcePosition
java.lang.Integer getTargetToSourcePosition()
Gets target to source position for ordering.- Returns:
- target to source position. Could be
nullif position is not known or not applicable
-
setTargetToSourcePosition
void setTargetToSourcePosition(java.lang.Integer position)
Sets the target to source position.- Parameters:
position- Target to source position
-
-