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

com.uid2.shared.model.TokenVersion Maven / Gradle / Ivy

package com.uid2.shared.model;

public enum TokenVersion {
    V2(2),
    V3(112), //prefix A3/B3 (UID2 email/phone) and E3/F3 (EUID email/phone). See UID2-79+Token+and+ID+format+v3
    V4(128); //prefix A4/B4 (UID2 email/phone) and E4/F4 (EUID email/phone)

    public final int rawVersion;

    TokenVersion(int rawVersion) { this.rawVersion = rawVersion; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy