-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathUserEvent.java
48 lines (38 loc) · 1.59 KB
/
UserEvent.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
* Copyright (c) 2017 Otávio Santana and others
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Apache License v2.0 which accompanies this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Apache License v2.0 is available at http://www.opensource.org/licenses/apache2.0.php.
*
* You may elect to redistribute this code under either of these licenses.
*
* Contributors:
*
* Otavio Santana
*/
package org.jnosql.demo.key;
import org.jnosql.artemis.EntityPostPersit;
import org.jnosql.artemis.EntityPrePersist;
import org.jnosql.artemis.key.KeyValueEntityPostPersist;
import org.jnosql.artemis.key.KeyValueEntityPrePersist;
import javax.enterprise.context.ApplicationScoped;
import javax.enterprise.event.Observes;
import java.util.logging.Logger;
@ApplicationScoped
public class UserEvent {
private static final Logger LOGGER = Logger.getLogger(UserEvent.class.getName());
public void preEntity(@Observes EntityPrePersist event) {
LOGGER.info("Event to pre persistence" + event.getValue());
}
public void postEntity(@Observes EntityPostPersit event) {
LOGGER.info("Event to post persistence" + event.getValue());
}
public void preColumn(@Observes KeyValueEntityPrePersist event) {
LOGGER.info("Event to pre redis entity" + event.getEntity());
}
public void postColumn(@Observes KeyValueEntityPostPersist event) {
LOGGER.info("Event to post redis entity" + event.getEntity());
}
}