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

com.deviceatlas.cloud.deviceidentification.client.ActionConstants 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 ActionConstants {

    /** Action to be taken after an end-point responds: If an-endpoint response was fine */
    FAILOVER_NOT_REQUIRED((byte)0),
    /** Action to be taken after an end-point responds: If the error controller returns this the fail-over mechanism must stop trying the next end-point */
    FAILOVER_STOP((byte)1),
    /** Action to be taken after an end-point responds: If the error controller returns this the fail-over mechanism must try the next end-point */
    FAILOVER_CONTINUE((byte)2);

    private final byte action;

    ActionConstants(final byte action) {
        this.action = action;
    }

    public byte getAction() {
        return action;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy