All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.infobip.mobile.messaging.api.support.CustomApiHeaders Maven / Gradle / Ivy

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