Skip to content

Instantly share code, notes, and snippets.

@goyuninfo
Created November 26, 2013 05:15
Show Gist options
  • Save goyuninfo/7653796 to your computer and use it in GitHub Desktop.
Save goyuninfo/7653796 to your computer and use it in GitHub Desktop.
package ca.i88.sample.pattern.observer.ee;
import javax.ejb.Stateless;
import javax.enterprise.event.Observes;
/**
*
* @author it.i88.ca
*/
@Stateless
public class I88caEventListener {
public void listen(@Observes I88caEvent event) {
System.out.println(event.getMsg());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment