Package ru.curs.celesta.dbutils.h2
Class AbstractMaterializedViewTrigger
- java.lang.Object
-
- ru.curs.celesta.dbutils.h2.AbstractMaterializedViewTrigger
-
- All Implemented Interfaces:
org.h2.api.Trigger
- Direct Known Subclasses:
MaterializedViewDeleteTrigger,MaterializedViewInsertTrigger,MaterializedViewUpdateTrigger
public abstract class AbstractMaterializedViewTrigger extends Object implements org.h2.api.Trigger
Base class for all triggers of materialized view.- Since:
- 2017-07-07
- Author:
- ioann
-
-
Constructor Summary
Constructors Constructor Description AbstractMaterializedViewTrigger()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()voidinit(Connection connection, String schemaName, String triggerName, String tableName, boolean before, int type)static voidinitScore(AbstractScore score)Sets up the score with which the current H2 instance should work.voidremove()
-
-
-
Method Detail
-
initScore
public static void initScore(AbstractScore score)
Sets up the score with which the current H2 instance should work.- Parameters:
score- The current score.
-
init
public void init(Connection connection, String schemaName, String triggerName, String tableName, boolean before, int type)
- Specified by:
initin interfaceorg.h2.api.Trigger
-
close
public void close()
- Specified by:
closein interfaceorg.h2.api.Trigger
-
remove
public void remove()
- Specified by:
removein interfaceorg.h2.api.Trigger
-
-