com.clevertap.apns.enums.InterruptionLevel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apns-http2 Show documentation
Show all versions of apns-http2 Show documentation
A library for communicating with the Apple Push Gateway in HTTP/2.
package com.clevertap.apns.enums;
public enum InterruptionLevel {
ACTIVE("active"),
PASSIVE("passive"),
TIME_SENSITIVE("time-sensitive"),
CRITICAL("critical")
;
private final String value;
InterruptionLevel(String value) {
this.value = value;
}
public String getValue() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy