*
*/
public class NotificationHandler {
public static void displayAlert(final Font font, final Icon icon,
final String message, final AlertifyType type, final int time) {
Alertify.show(new AlertifyBuilder().font(font).icon(icon).type(type)
.text(message).autoClose(time).build());
}