mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-18 12:31:26 +07:00
(cherry picked from commit a0f6feaec2a879f1ebeeb065420a17bb62f5fd59) IJ-MR-20360 GitOrigin-RevId: f85e6e7fec8b3bcd58f350ed039e920cd4eb7489
14 lines
737 B
Java
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
|
|
}
|