com.deviceatlas.cloud.deviceidentification.client.HeaderConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deviceatlas-cloud-java-client Show documentation
Show all versions of deviceatlas-cloud-java-client Show documentation
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;
}
}