
org.infobip.mobile.messaging.api.support.CustomApiHeaders Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infobip-mobile-messaging-api-java Show documentation
Show all versions of infobip-mobile-messaging-api-java Show documentation
Mobile Messaging SDK for Android
The newest version!
package org.infobip.mobile.messaging.api.support;
/**
* @author pandric on 10/04/2017.
*/
public enum CustomApiHeaders {
FOREGROUND("foreground"),
SESSION_ID("sessionId"),
PUSH_REGISTRATION_ID("pushregistrationid"),
INSTALLATION_ID("installationid"),
NEW_BASE_URL("New-Base-URL"),
APPLICATION_CODE("applicationcode");
private final String value;
CustomApiHeaders(String value) {
this.value = value;
}
public String getValue() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy