Skip to content

Commit

Permalink
LPS-149508 Rename
Browse files Browse the repository at this point in the history
  • Loading branch information
brianchandotcom committed May 4, 2022
1 parent b0a6c38 commit a21d0b2
Show file tree
Hide file tree
Showing 14 changed files with 42 additions and 42 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@ public class ObjectActionModelListener extends BaseModelListener<ObjectAction> {
public void onBeforeCreate(ObjectAction objectAction)
throws ModelListenerException {

auditOnCreateOrRemove(EventTypes.ADD, objectAction);
_route(EventTypes.ADD, objectAction);
}

@Override
public void onBeforeRemove(ObjectAction objectAction)
throws ModelListenerException {

auditOnCreateOrRemove(EventTypes.DELETE, objectAction);
_route(EventTypes.DELETE, objectAction);
}

@Override
Expand All @@ -69,7 +69,7 @@ public void onBeforeUpdate(
}
}

protected void auditOnCreateOrRemove(
protected void _route(
String eventType, ObjectAction objectAction)
throws ModelListenerException {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ public class ObjectDefinitionModelListener
public void onBeforeCreate(ObjectDefinition objectDefinition)
throws ModelListenerException {

auditOnCreateOrRemove(EventTypes.ADD, objectDefinition);
_route(EventTypes.ADD, objectDefinition);
}

@Override
public void onBeforeRemove(ObjectDefinition objectDefinition)
throws ModelListenerException {

auditOnCreateOrRemove(EventTypes.DELETE, objectDefinition);
_route(EventTypes.DELETE, objectDefinition);
}

@Override
Expand All @@ -71,7 +71,7 @@ public void onBeforeUpdate(
}
}

protected void auditOnCreateOrRemove(
protected void _route(
String eventType, ObjectDefinition objectDefinition)
throws ModelListenerException {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@ public class ObjectFieldModelListener extends BaseModelListener<ObjectField> {
public void onBeforeCreate(ObjectField objectField)
throws ModelListenerException {

auditOnCreateOrRemove(EventTypes.ADD, objectField);
_route(EventTypes.ADD, objectField);
}

@Override
public void onBeforeRemove(ObjectField objectField)
throws ModelListenerException {

auditOnCreateOrRemove(EventTypes.DELETE, objectField);
_route(EventTypes.DELETE, objectField);
}

@Override
Expand All @@ -68,7 +68,7 @@ public void onBeforeUpdate(
}
}

protected void auditOnCreateOrRemove(
protected void _route(
String eventType, ObjectField objectField)
throws ModelListenerException {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ public class ObjectFieldSettingModelListener
public void onBeforeCreate(ObjectFieldSetting objectFieldSetting)
throws ModelListenerException {

auditOnCreateOrRemove(EventTypes.ADD, objectFieldSetting);
_route(EventTypes.ADD, objectFieldSetting);
}

@Override
public void onBeforeRemove(ObjectFieldSetting objectFieldSetting)
throws ModelListenerException {

auditOnCreateOrRemove(EventTypes.DELETE, objectFieldSetting);
_route(EventTypes.DELETE, objectFieldSetting);
}

@Override
Expand All @@ -71,7 +71,7 @@ public void onBeforeUpdate(
}
}

protected void auditOnCreateOrRemove(
protected void _route(
String eventType, ObjectFieldSetting objectFieldSetting)
throws ModelListenerException {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ public class ObjectLayoutBoxModelListener
public void onBeforeCreate(ObjectLayoutBox objectLayoutBox)
throws ModelListenerException {

auditOnCreateOrRemove(EventTypes.ADD, objectLayoutBox);
_route(EventTypes.ADD, objectLayoutBox);
}

@Override
public void onBeforeRemove(ObjectLayoutBox objectLayoutBox)
throws ModelListenerException {

auditOnCreateOrRemove(EventTypes.DELETE, objectLayoutBox);
_route(EventTypes.DELETE, objectLayoutBox);
}

@Override
Expand All @@ -71,7 +71,7 @@ public void onBeforeUpdate(
}
}

protected void auditOnCreateOrRemove(
protected void _route(
String eventType, ObjectLayoutBox objectLayoutBox)
throws ModelListenerException {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ public class ObjectLayoutColumnModelListener
public void onBeforeCreate(ObjectLayoutColumn objectLayoutColumn)
throws ModelListenerException {

auditOnCreateOrRemove(EventTypes.ADD, objectLayoutColumn);
_route(EventTypes.ADD, objectLayoutColumn);
}

@Override
public void onBeforeRemove(ObjectLayoutColumn objectLayoutColumn)
throws ModelListenerException {

auditOnCreateOrRemove(EventTypes.DELETE, objectLayoutColumn);
_route(EventTypes.DELETE, objectLayoutColumn);
}

@Override
Expand All @@ -71,7 +71,7 @@ public void onBeforeUpdate(
}
}

protected void auditOnCreateOrRemove(
protected void _route(
String eventType, ObjectLayoutColumn objectLayoutColumn)
throws ModelListenerException {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@ public class ObjectLayoutModelListener extends BaseModelListener<ObjectLayout> {
public void onBeforeCreate(ObjectLayout objectLayout)
throws ModelListenerException {

auditOnCreateOrRemove(EventTypes.ADD, objectLayout);
_route(EventTypes.ADD, objectLayout);
}

@Override
public void onBeforeRemove(ObjectLayout objectLayout)
throws ModelListenerException {

auditOnCreateOrRemove(EventTypes.DELETE, objectLayout);
_route(EventTypes.DELETE, objectLayout);
}

@Override
Expand All @@ -69,7 +69,7 @@ public void onBeforeUpdate(
}
}

protected void auditOnCreateOrRemove(
protected void _route(
String eventType, ObjectLayout objectLayout)
throws ModelListenerException {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ public class ObjectLayoutRowModelListener
public void onBeforeCreate(ObjectLayoutRow objectLayoutRow)
throws ModelListenerException {

auditOnCreateOrRemove(EventTypes.ADD, objectLayoutRow);
_route(EventTypes.ADD, objectLayoutRow);
}

@Override
public void onBeforeRemove(ObjectLayoutRow objectLayoutRow)
throws ModelListenerException {

auditOnCreateOrRemove(EventTypes.DELETE, objectLayoutRow);
_route(EventTypes.DELETE, objectLayoutRow);
}

@Override
Expand All @@ -71,7 +71,7 @@ public void onBeforeUpdate(
}
}

protected void auditOnCreateOrRemove(
protected void _route(
String eventType, ObjectLayoutRow objectLayoutRow)
throws ModelListenerException {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ public class ObjectLayoutTabModelListener
public void onBeforeCreate(ObjectLayoutTab objectLayoutTab)
throws ModelListenerException {

auditOnCreateOrRemove(EventTypes.ADD, objectLayoutTab);
_route(EventTypes.ADD, objectLayoutTab);
}

@Override
public void onBeforeRemove(ObjectLayoutTab objectLayoutTab)
throws ModelListenerException {

auditOnCreateOrRemove(EventTypes.DELETE, objectLayoutTab);
_route(EventTypes.DELETE, objectLayoutTab);
}

@Override
Expand All @@ -71,7 +71,7 @@ public void onBeforeUpdate(
}
}

protected void auditOnCreateOrRemove(
protected void _route(
String eventType, ObjectLayoutTab objectLayoutTab)
throws ModelListenerException {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ public class ObjectRelationshipModelListener
public void onBeforeCreate(ObjectRelationship objectRelationship)
throws ModelListenerException {

auditOnCreateOrRemove(EventTypes.ADD, objectRelationship);
_route(EventTypes.ADD, objectRelationship);
}

@Override
public void onBeforeRemove(ObjectRelationship objectRelationship)
throws ModelListenerException {

auditOnCreateOrRemove(EventTypes.DELETE, objectRelationship);
_route(EventTypes.DELETE, objectRelationship);
}

@Override
Expand All @@ -71,7 +71,7 @@ public void onBeforeUpdate(
}
}

protected void auditOnCreateOrRemove(
protected void _route(
String eventType, ObjectRelationship objectRelationship)
throws ModelListenerException {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ public class ObjectValidationRuleModelListener
public void onBeforeCreate(ObjectValidationRule objectValidationRule)
throws ModelListenerException {

auditOnCreateOrRemove(EventTypes.ADD, objectValidationRule);
_route(EventTypes.ADD, objectValidationRule);
}

@Override
public void onBeforeRemove(ObjectValidationRule objectValidationRule)
throws ModelListenerException {

auditOnCreateOrRemove(EventTypes.DELETE, objectValidationRule);
_route(EventTypes.DELETE, objectValidationRule);
}

@Override
Expand All @@ -71,7 +71,7 @@ public void onBeforeUpdate(
}
}

protected void auditOnCreateOrRemove(
protected void _route(
String eventType, ObjectValidationRule objectValidationRule)
throws ModelListenerException {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ public class ObjectViewColumnModelListener
public void onBeforeCreate(ObjectViewColumn objectViewColumn)
throws ModelListenerException {

auditOnCreateOrRemove(EventTypes.ADD, objectViewColumn);
_route(EventTypes.ADD, objectViewColumn);
}

@Override
public void onBeforeRemove(ObjectViewColumn objectViewColumn)
throws ModelListenerException {

auditOnCreateOrRemove(EventTypes.DELETE, objectViewColumn);
_route(EventTypes.DELETE, objectViewColumn);
}

@Override
Expand All @@ -71,7 +71,7 @@ public void onBeforeUpdate(
}
}

protected void auditOnCreateOrRemove(
protected void _route(
String eventType, ObjectViewColumn objectViewColumn)
throws ModelListenerException {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@ public class ObjectViewModelListener extends BaseModelListener<ObjectView> {
public void onBeforeCreate(ObjectView objectView)
throws ModelListenerException {

auditOnCreateOrRemove(EventTypes.ADD, objectView);
_route(EventTypes.ADD, objectView);
}

@Override
public void onBeforeRemove(ObjectView objectView)
throws ModelListenerException {

auditOnCreateOrRemove(EventTypes.DELETE, objectView);
_route(EventTypes.DELETE, objectView);
}

@Override
Expand All @@ -68,7 +68,7 @@ public void onBeforeUpdate(
}
}

protected void auditOnCreateOrRemove(
protected void _route(
String eventType, ObjectView objectView)
throws ModelListenerException {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ public class ObjectViewSortColumnModelListener
public void onBeforeCreate(ObjectViewSortColumn objectViewSortColumn)
throws ModelListenerException {

auditOnCreateOrRemove(EventTypes.ADD, objectViewSortColumn);
_route(EventTypes.ADD, objectViewSortColumn);
}

@Override
public void onBeforeRemove(ObjectViewSortColumn objectViewSortColumn)
throws ModelListenerException {

auditOnCreateOrRemove(EventTypes.DELETE, objectViewSortColumn);
_route(EventTypes.DELETE, objectViewSortColumn);
}

@Override
Expand All @@ -71,7 +71,7 @@ public void onBeforeUpdate(
}
}

protected void auditOnCreateOrRemove(
protected void _route(
String eventType, ObjectViewSortColumn objectViewSortColumn)
throws ModelListenerException {

Expand Down

0 comments on commit a21d0b2

Please sign in to comment.