Loading...
Searching...
No Matches
Notification.java
Go to the documentation of this file.
1package com.navigine.idl.java;
2
16public abstract class Notification {
30 public abstract int getId();
31
45 public abstract String getTitle();
46
60 public abstract String getContent();
61
75 public abstract String getImageUrl();
76
82 public abstract boolean isValid();
83}