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

com.princexml.wrapper.enums.AuthScheme Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (C) 2021 YesLogic Pty. Ltd.
 * All rights reserved.
 */

package com.princexml.wrapper.enums;

/**
 * HTTP authentication schemes.
 */
public enum AuthScheme {
    /** Equates to the string {@code "http"}. */
    HTTP("http"),
    /** Equates to the string {@code "https"}. */
    HTTPS("https");

    private final String authScheme;

    AuthScheme(String authScheme) {
        this.authScheme = authScheme;
    }

    @Override
    public String toString() {
        return this.authScheme;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy