Skip to content
Snippets Groups Projects
Notification.java 357 B
Newer Older
package com.example.notification;

/**
 * Created by pharmacy on 09/01/2018.
 */

public interface Notification {

    //Used to send the notification - will call Android OS for this purpose
    public boolean send();

    //TBC used to alter alert type - audio, visual, haptic etc. May need separate methods for these
    public boolean setParameters();
}