Method | Description | |
---|---|---|
ConnectorAttributesAccessor ( ICollection |
||
Find ( String name ) : |
Find the named attribute
|
|
FindBigDecimal ( String name ) : |
Get the big decimal value from the specified (single-valued) attribute. Since 1.4 |
|
FindBigInteger ( String name ) : |
Get the big integer value from the specified (single-valued) attribute. Since 1.4 |
|
FindBoolean ( String name ) : bool? |
Get the boolean value from the specified (single-valued) attribute.
|
|
FindByte ( String name ) : byte? |
Get the byte value from the specified (single-valued) attribute. Since 1.4 |
|
FindByteArray ( String name ) : byte[] |
Get the byte array value from the specified (single-valued) attribute. Since 1.4 |
|
FindCharacter ( String name ) : char? |
Get the char value from the specified (single-valued) attribute. Since 1.4 |
|
FindDateTime ( String name ) : DateTime? |
Get the date value from the specified (single-valued) attribute that contains a long.
|
|
FindDictionary ( String name ) : object>.IDictionary |
Get the dictionary value from the specified (single-valued) attribute. Since 1.4 |
|
FindDouble ( String name ) : double? |
Get the integer value from the specified (single-valued) attribute.
|
|
FindFloat ( String name ) : float? |
Get the float value from the specified (single-valued) attribute. Since 1.4 |
|
FindGuardedByteArray ( String name ) : GuardedByteArray |
Get the guarded byte array value from the specified (single-valued) attribute. Since 1.4 |
|
FindGuardedString ( String name ) : GuardedString |
Get the guarded string value from the specified (single-valued) attribute. Since 1.4 |
|
FindInteger ( String name ) : int? |
Get the integer value from the specified (single-valued) attribute.
|
|
FindList ( String name ) : IList |
Return a list of attributes
|
|
FindLong ( String name ) : long? |
Get the long value from the specified (single-valued) attribute.
|
|
FindString ( String name ) : String |
Get the string value from the specified (single-valued) attribute.
|
|
FindStringList ( String name ) : IList |
Return the multivalued attribute as a list of strings. This will throw a ClassCastException if the underlying attribute list is not of type String. |
|
GetEnabled ( bool dflt ) : bool |
Return the enabled status of the account. If the ENABLE operational attribute is present, it's value takes precedence over the current value. If it is missing, the currentlyEnabled status is returned instead. |
|
GetName ( ) : |
Get the Name attribute from the set of attributes.
|
|
GetPassword ( ) : GuardedString |
Get the password as a GuardeString
|
|
GetUid ( ) : |
Get the Uid attribute from the set of attributes.
|
|
HasAttribute ( String name ) : bool |
Determines if the set as the attribute specified.
|
|
ListAttributeNames ( ) : ICollection |
Get the name of attributes this Accessor was created with. Since 1.4 |
public ConnectorAttributesAccessor ( ICollection |
||
attrs | ICollection |
|
return | System |
public Find ( String name ) : |
||
name | String | - /// the attribute name to search for |
return |
public FindBigDecimal ( String name ) : |
||
name | String | Attribute from which to retrieve the big decimal value. |
return |
public FindBigInteger ( String name ) : |
||
name | String | Attribute from which to retrieve the big integer value. |
return |
public FindBoolean ( String name ) : bool? | ||
name | String | Attribute from which to retrieve the boolean value. |
return | bool? |
public FindByte ( String name ) : byte? | ||
name | String | Attribute from which to retrieve the byte value. |
return | byte? |
public FindByteArray ( String name ) : byte[] | ||
name | String | Attribute from which to retrieve the byte array value. |
return | byte[] |
public FindCharacter ( String name ) : char? | ||
name | String | Attribute from which to retrieve the char value. |
return | char? |
public FindDateTime ( String name ) : DateTime? | ||
name | String | Attribute from which to retrieve the date value. |
return | DateTime? |
public FindDictionary ( String name ) : object>.IDictionary | ||
name | String | Attribute from which to retrieve the dictionary value. |
return | object>.IDictionary |
public FindDouble ( String name ) : double? | ||
name | String | Attribute from which to retrieve the integer value. |
return | double? |
public FindFloat ( String name ) : float? | ||
name | String | Attribute from which to retrieve the float value. |
return | float? |
public FindGuardedByteArray ( String name ) : GuardedByteArray | ||
name | String | Attribute from which to retrieve the guarded byte array value. |
return | GuardedByteArray |
public FindGuardedString ( String name ) : GuardedString | ||
name | String | Attribute from which to retrieve the guarded string value. |
return | GuardedString |
public FindInteger ( String name ) : int? | ||
name | String | Attribute from which to retrieve the long value. |
return | int? |
public FindList ( String name ) : IList | ||
name | String | - /// name of attribute to search for. |
return | IList |
public FindLong ( String name ) : long? | ||
name | String | Attribute from which to retrieve the long value. |
return | long? |
public FindString ( String name ) : String | ||
name | String | Attribute from which to retrieve the string value. |
return | String |
public FindStringList ( String name ) : IList |
||
name | String | the name of the attribute to search for |
return | IList |
public GetEnabled ( bool dflt ) : bool | ||
dflt | bool | the default state if enable is not found. |
return | bool |
public HasAttribute ( String name ) : bool | ||
name | String | attribute name |
return | bool |