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

com.microsoft.alm.auth.oauth.PromptValue Maven / Gradle / Ivy

There is a newer version: 0.6.4
Show newest version
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See License.txt in the project root.

package com.microsoft.alm.auth.oauth;

class PromptValue {
    static final String LOGIN = "login";
    static final String REFRESH_SESSION = "refresh_session";

    // The behavior of this value is identical to prompt=none for managed users; However, for federated users, AAD
    // redirects to ADFS as it cannot determine in advance whether ADFS can login user silently (e.g. via WIA) or not.
    static final String ATTEMPT_NONE = "attempt_none";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy