diff --git a/nirc_ehr/src/org/labkey/nirc_ehr/table/NIRC_EHRSharedDatasetTrigger.java b/nirc_ehr/src/org/labkey/nirc_ehr/table/NIRC_EHRSharedDatasetTrigger.java index 5b9cf3c5..2ae3b4c9 100644 --- a/nirc_ehr/src/org/labkey/nirc_ehr/table/NIRC_EHRSharedDatasetTrigger.java +++ b/nirc_ehr/src/org/labkey/nirc_ehr/table/NIRC_EHRSharedDatasetTrigger.java @@ -4,6 +4,7 @@ import org.labkey.api.data.Container; import org.labkey.api.data.TableInfo; import org.labkey.api.data.triggers.Trigger; +import org.labkey.api.query.QueryUpdateService; import org.labkey.api.query.ValidationException; import org.labkey.api.security.User; @@ -34,7 +35,7 @@ private void verifyPerformedBy(TableInfo table, @Nullable Map ne } @Override - public void beforeInsert(TableInfo table, Container c, User user, @Nullable Map newRow, ValidationException errors, Map extraContext) throws ValidationException + public void beforeInsert(TableInfo table, Container c, User user, @Nullable QueryUpdateService.InsertOption insertOption, @Nullable Map newRow, ValidationException errors, Map extraContext) throws ValidationException { transformAnimalIdToUpperCase(newRow); verifyPerformedBy(table, newRow, errors); @@ -42,7 +43,7 @@ public void beforeInsert(TableInfo table, Container c, User user, @Nullable Map< @Override public void beforeUpdate(TableInfo table, Container c, - User user, @Nullable Map newRow, @Nullable Map oldRow, + User user, @Nullable QueryUpdateService.InsertOption insertOption, @Nullable Map newRow, @Nullable Map oldRow, ValidationException errors, Map extraContext) throws ValidationException { verifyPerformedBy(table, newRow, errors);