| 23 | import jnode.dto.Netmail; |
| 24 | |
| 25 | public class NewNetmailEvent implements IEvent { |
| 26 | private final Netmail netmail; |
| 27 | |
| 28 | public Netmail getNetmail() { |
| 29 | return netmail; |
| 30 | } |
| 31 | |
| 32 | public NewNetmailEvent(Netmail netmail) { |
| 33 | super(); |
| 34 | this.netmail = netmail; |
| 35 | } |
| 36 | |
| 37 | @Override |
| 38 | public String getEvent() { |
| 39 | return ""; |
| 40 | } |
| 41 | |
| 42 | } |
nothing calls this directly
no outgoing calls
no test coverage detected