DATAMONGO-1398, DATAMONGO-1395 - Update Lifecycle Events examples in Reference Documentation.

Replace deprecated methods by the supported API.

Original Pull Request: #349
This commit is contained in:
Mark Paluch
2016-03-24 15:04:42 +01:00
committed by Christoph Strobl
parent abe78f0428
commit 0dc6169282

View File

@@ -2160,7 +2160,7 @@ To intercept an object before it goes through the conversion process (which turn
----
public class BeforeConvertListener extends AbstractMongoEventListener<Person> {
@Override
public void onBeforeConvert(Person p) {
public void onBeforeConvert(BeforeConvertEvent<Person> event) {
... does some auditing manipulation, set timestamps, whatever ...
}
}
@@ -2174,7 +2174,7 @@ To intercept an object before it goes into the database, you'd register a subcla
----
public class BeforeSaveListener extends AbstractMongoEventListener<Person> {
@Override
public void onBeforeSave(Person p, DBObject dbo) {
public void onBeforeSave(BeforeSaveEvent<Person> event) {
… change values, delete them, whatever …
}
}