Enum SambaPasswordPluginCfgDefn.PwdSyncPolicy
- java.lang.Object
-
- java.lang.Enum<SambaPasswordPluginCfgDefn.PwdSyncPolicy>
-
- org.forgerock.opendj.server.config.meta.SambaPasswordPluginCfgDefn.PwdSyncPolicy
-
- All Implemented Interfaces:
Serializable
,Comparable<SambaPasswordPluginCfgDefn.PwdSyncPolicy>
- Enclosing class:
- SambaPasswordPluginCfgDefn
public static enum SambaPasswordPluginCfgDefn.PwdSyncPolicy extends Enum<SambaPasswordPluginCfgDefn.PwdSyncPolicy>
Defines the set of permissable values for the "pwd-sync-policy" property.Specifies which Samba passwords should be kept synchronized.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SYNC_LM_PASSWORD
Synchronize the LanMan password attribute "sambaLMPassword"SYNC_NT_PASSWORD
Synchronize the NT password attribute "sambaNTPassword"
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
static SambaPasswordPluginCfgDefn.PwdSyncPolicy
valueOf​(String name)
Returns the enum constant of this type with the specified name.static SambaPasswordPluginCfgDefn.PwdSyncPolicy[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SYNC_LM_PASSWORD
public static final SambaPasswordPluginCfgDefn.PwdSyncPolicy SYNC_LM_PASSWORD
Synchronize the LanMan password attribute "sambaLMPassword"
-
SYNC_NT_PASSWORD
public static final SambaPasswordPluginCfgDefn.PwdSyncPolicy SYNC_NT_PASSWORD
Synchronize the NT password attribute "sambaNTPassword"
-
-
Method Detail
-
values
public static SambaPasswordPluginCfgDefn.PwdSyncPolicy[] values()
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 (SambaPasswordPluginCfgDefn.PwdSyncPolicy c : SambaPasswordPluginCfgDefn.PwdSyncPolicy.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SambaPasswordPluginCfgDefn.PwdSyncPolicy valueOf​(String name)
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
-
toString
public String toString()
- Overrides:
toString
in classEnum<SambaPasswordPluginCfgDefn.PwdSyncPolicy>
-
-