Package org.datanucleus.flush
Class CollectionRemoveOperation
- java.lang.Object
-
- org.datanucleus.flush.CollectionRemoveOperation
-
- All Implemented Interfaces:
Operation,SCOOperation
- Direct Known Subclasses:
ListRemoveAtOperation
public class CollectionRemoveOperation extends Object implements SCOOperation
Remove operation for a collection. This is usually for the situation where we have a backing store, but also can be used where we are removing an object from a collection and the field is marked as cascade delete but we don't want to delete immediately.
-
-
Constructor Summary
Constructors Constructor Description CollectionRemoveOperation(ObjectProvider op, int fieldNum, Object value, boolean allowCascadeDelete)CollectionRemoveOperation(ObjectProvider op, CollectionStore store, Object value, boolean allowCascadeDelete)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AbstractMemberMetaDatagetMemberMetaData()Accessor for the metadata for the member that this operation is for.ObjectProvidergetObjectProvider()Accessor for the ObjectProvider of the object that this operation is performed on.StoregetStore()Accessor for the backing store for this operation.ObjectgetValue()Accessor for the value being removed.voidperform()Perform the remove(Object) operation on the specified container.StringtoString()
-
-
-
Constructor Detail
-
CollectionRemoveOperation
public CollectionRemoveOperation(ObjectProvider op, CollectionStore store, Object value, boolean allowCascadeDelete)
-
CollectionRemoveOperation
public CollectionRemoveOperation(ObjectProvider op, int fieldNum, Object value, boolean allowCascadeDelete)
-
-
Method Detail
-
getMemberMetaData
public AbstractMemberMetaData getMemberMetaData()
Description copied from interface:SCOOperationAccessor for the metadata for the member that this operation is for.- Specified by:
getMemberMetaDatain interfaceSCOOperation- Returns:
- The member metadata
-
getValue
public Object getValue()
Accessor for the value being removed.- Returns:
- Value being removed
-
perform
public void perform()
Perform the remove(Object) operation on the specified container.
-
getStore
public Store getStore()
Description copied from interface:SCOOperationAccessor for the backing store for this operation.- Specified by:
getStorein interfaceSCOOperation- Returns:
- The backing store
-
getObjectProvider
public ObjectProvider getObjectProvider()
Description copied from interface:OperationAccessor for the ObjectProvider of the object that this operation is performed on.- Specified by:
getObjectProviderin interfaceOperation- Returns:
- The ObjectProvider
-
-