added emergency parameters

This commit is contained in:
skubiak
2015-01-09 07:56:01 +01:00
parent 5d9c22496d
commit df88cc80b7
2 changed files with 57 additions and 5 deletions

View File

@ -16,8 +16,11 @@ public enum Constants {
PRIORITY("priority"),
TIMESTAMP("timestamp"),
URL("url"),
URLTITLE("urltitle");
URLTITLE("urltitle"),
CALLBACK("callback"),
EXPIRE("expire"),
RETRY("retry");
private final String value;
Constants (String value) {