ReplicateEventpublic class ReplicateEvent extends AbstractEvent Defines an event class for the replication of an entity. |
Fields Summary |
---|
private Object | object | private org.hibernate.ReplicationMode | replicationMode | private String | entityName |
Constructors Summary |
---|
public ReplicateEvent(Object object, org.hibernate.ReplicationMode replicationMode, EventSource source)
this(null, object, replicationMode, source);
| public ReplicateEvent(String entityName, Object object, org.hibernate.ReplicationMode replicationMode, EventSource source)
super(source);
this.entityName = entityName;
if ( object == null ) {
throw new IllegalArgumentException(
"attempt to create replication strategy with null entity"
);
}
if ( replicationMode == null ) {
throw new IllegalArgumentException(
"attempt to create replication strategy with null replication mode"
);
}
this.object = object;
this.replicationMode = replicationMode;
|
|