public class MigrationEventLogger extends Object implements MigrationEvents
| Modifier and Type | Field and Description |
|---|---|
protected org.slf4j.Logger |
logger |
| Constructor and Description |
|---|
MigrationEventLogger() |
| Modifier and Type | Method and Description |
|---|---|
void |
associationAdded(String entity,
String name,
String value) |
void |
associationRemoved(String entity,
String name) |
void |
associationRenamed(String entity,
String from,
String to) |
void |
entityTypeChanged(String entity,
String newEntityType) |
void |
manyAssociationAdded(String entity,
String name,
String... value) |
void |
manyAssociationRemoved(String entity,
String name) |
void |
manyAssociationRenamed(String entity,
String from,
String to) |
void |
namedAssociationAdded(String entity,
String name,
Map<String,String> value) |
void |
namedAssociationRemoved(String entity,
String name) |
void |
namedAssociationRenamed(String entity,
String from,
String to) |
void |
propertyAdded(String entity,
String name,
Object value) |
void |
propertyRemoved(String entity,
String name) |
void |
propertyRenamed(String entity,
String from,
String to) |
public void propertyAdded(String entity, String name, Object value)
propertyAdded in interface MigrationEventspublic void propertyRemoved(String entity, String name)
propertyRemoved in interface MigrationEventspublic void propertyRenamed(String entity, String from, String to)
propertyRenamed in interface MigrationEventspublic void associationAdded(String entity, String name, String value)
associationAdded in interface MigrationEventspublic void associationRemoved(String entity, String name)
associationRemoved in interface MigrationEventspublic void associationRenamed(String entity, String from, String to)
associationRenamed in interface MigrationEventspublic void manyAssociationAdded(String entity, String name, String... value)
manyAssociationAdded in interface MigrationEventspublic void manyAssociationRemoved(String entity, String name)
manyAssociationRemoved in interface MigrationEventspublic void manyAssociationRenamed(String entity, String from, String to)
manyAssociationRenamed in interface MigrationEventspublic void namedAssociationAdded(String entity, String name, Map<String,String> value)
namedAssociationAdded in interface MigrationEventspublic void namedAssociationRemoved(String entity, String name)
namedAssociationRemoved in interface MigrationEventspublic void namedAssociationRenamed(String entity, String from, String to)
namedAssociationRenamed in interface MigrationEventspublic void entityTypeChanged(String entity, String newEntityType)
entityTypeChanged in interface MigrationEvents