Files
openide/platform/external-process-auth-helper/src/externalProcessAuthHelper/AuthenticationMode.java
Artem.Bukhonov 7098884bbb Get rid of Git prefix
(cherry picked from commit a0f6feaec2a879f1ebeeb065420a17bb62f5fd59)

IJ-MR-20360

GitOrigin-RevId: f85e6e7fec8b3bcd58f350ed039e920cd4eb7489
2022-02-03 18:35:52 +00:00

14 lines
737 B
Java

// Copyright 2000-2022 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package com.intellij.externalProcessAuthHelper;
/**
* Flag to get user credentials in different interaction modes:
* NONE: no authentication will be performed if password is requested
* (Also, native credential helper should be disabled manually as a command parameter);
* SILENT: the IDE will look for passwords in the common password storages. if no password is found, no authentication will be performed;
* FULL: the IDE will look for passwords in the common password storages. If no password is found, an authentication dialog will be displayed.
*/
public enum AuthenticationMode {
NONE, SILENT, FULL
}