Package org.sormula.operation.cascade

Classes that perform cascade (one-to-many and one-to-one) operations that are defined by cascade annotations.

See:
          Description

Class Summary
CascadeOperation<S,T> Base class for all cascade operations.
DeleteCascadeOperation<S,T> Cascade that deletes rows from target table when source operation initiates a cascade.
InsertCascadeOperation<S,T> Cascade that inserts rows into target table when source operation initiates a cascade.
ModifyCascadeOperation<S,T> Base class for cascades that modify database.
SaveCascadeOperation<S,T> Cascade that saves rows in target table when source operation initiates a cascade.
SelectCascadeOperation<S,T> Cascade that selects rows from target table into target field when source operation initiates a cascade.
UpdateCascadeOperation<S,T> Cascade that updates rows in target table when source operation initiates a cascade.
 

Package org.sormula.operation.cascade Description

Classes that perform cascade (one-to-many and one-to-one) operations that are defined by cascade annotations. Classes in this package are used by sormula to perform default cascade operations. Use these classes to create custom cascade operations.