package com.rosetta.im.event; public class Event { private String name; public Event() {} public String getEventName() { if(this.name == null) { this.name = this.getClass().getSimpleName(); } return this.name; } }