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

io.github.yawenok.apns.http2.enums.auth.AuthMode Maven / Gradle / Ivy

package io.github.yawenok.apns.http2.enums.auth;

public enum AuthMode {
    TLS(1),
    JWT(2);

    private final int mode;
    AuthMode(final int mode) {
        this.mode = mode;
    }

    public int getMode() {
        return this.mode;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy