MCPcopy Create free account
hub / github.com/annmuor/jnode / NewFilemailEvent

Class NewFilemailEvent

jnode-core/src/jnode/event/NewFilemailEvent.java:25–42  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23import jnode.dto.Filemail;
24
25public class NewFilemailEvent implements IEvent {
26 private final Filemail filemail;
27
28 @Override
29 public String getEvent() {
30 return "";
31 }
32
33 public Filemail getFilemail() {
34 return filemail;
35 }
36
37 public NewFilemailEvent(Filemail filemail) {
38 super();
39 this.filemail = filemail;
40 }
41
42}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected