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

com.deviceatlas.cloud.deviceidentification.client.HeaderConstants Maven / Gradle / Ivy

Go to download

DeviceAtlas is the world's fastest, most accurate device detection solution providing real-time information on all mobile and other devices accessing the web.

The newest version!
package com.deviceatlas.cloud.deviceidentification.client;

public enum HeaderConstants {
    DA_HEADER_PREFIX("X-DA-"),
    CLIENT_COOKIE_HEADER("Client-Properties"),
    REMOTE_ADDR("remote-addr"),
    UA_HEADER("user-agent"),
    COOKIE_HEADER("cookie");

    private final String text;

    HeaderConstants(final String text) {
        this.text = text;
    }

    @Override
    public String toString() {
        return text;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy