Enum Directory
- java.lang.Object
-
- java.lang.Enum<Directory>
-
- com.atlassian.confluence.it.usermanagement.Directory
-
- All Implemented Interfaces:
Serializable
,Comparable<Directory>
@Deprecated public enum Directory extends Enum<Directory>
Deprecated.Please use confluence-test-utils module instead. See {com.atlassian.confluence.test.usermanagement.DirectoryConfigurationFactory} alternative
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVE_DIRECTORY
Deprecated.CROWD
Deprecated.CROWD_SSO
Deprecated.DEFAULT
Deprecated.READ_ONLY
Deprecated.READ_ONLY_LOCAL_GROUPS
Deprecated.READ_WRITE
Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description Class<? extends DirectoryConfiguration>
getConfigClass()
Deprecated.static Directory
getDirectory(String mode)
Deprecated.DirectoryConfiguration
getInstance()
Deprecated.static DirectoryConfiguration
getInstance(String mode)
Deprecated.static boolean
isDefault(DirectoryConfiguration config)
Deprecated.static boolean
isReadOnly(DirectoryConfiguration config)
Deprecated.static Directory
valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name.static Directory[]
values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEFAULT
public static final Directory DEFAULT
Deprecated.
-
READ_ONLY
public static final Directory READ_ONLY
Deprecated.
-
READ_ONLY_LOCAL_GROUPS
public static final Directory READ_ONLY_LOCAL_GROUPS
Deprecated.
-
READ_WRITE
public static final Directory READ_WRITE
Deprecated.
-
CROWD
public static final Directory CROWD
Deprecated.
-
CROWD_SSO
public static final Directory CROWD_SSO
Deprecated.
-
ACTIVE_DIRECTORY
public static final Directory ACTIVE_DIRECTORY
Deprecated.
-
-
Method Detail
-
values
public static Directory[] values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Directory c : Directory.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Directory valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getConfigClass
public Class<? extends DirectoryConfiguration> getConfigClass()
Deprecated.
-
getInstance
public DirectoryConfiguration getInstance()
Deprecated.
-
getInstance
public static DirectoryConfiguration getInstance(String mode)
Deprecated.
-
isDefault
public static boolean isDefault(DirectoryConfiguration config)
Deprecated.
-
isReadOnly
public static boolean isReadOnly(DirectoryConfiguration config)
Deprecated.
-
-