#1 added support for html flag

This commit is contained in:
Sven Kubiak
2015-12-08 22:03:44 +01:00
parent e6dc23e0ae
commit c2432fc017
5 changed files with 139 additions and 119 deletions

View File

@ -1,7 +1,7 @@
package de.svenkubiak.jpushover.enums;
/**
*
*
* @author svenkubiak
*
*/
@ -20,15 +20,16 @@ public enum Constants {
URLTITLE("urltitle"),
CALLBACK("callback"),
EXPIRE("expire"),
RETRY("retry");
RETRY("retry"),
HTML("html");
private final String value;
Constants (String value) {
this.value = value;
}
public String get() {
public String toString() {
return this.value;
}
}