Class ADsAttrDef
public class ADsAttrDef extends Object
{
// Fields
protected int m_adsType;
protected String m_attributeName;
protected Vector m_attrValues;
// Constructors
public ADsAttrDef();
// Methods
public int get_ADsType();
public String get_AttributeName();
public Vector get_AttrValues();
public void put_ADsType( int adsType);
public void put_AttributeName( String attributeName);
public void put_AttrValues( Vector attrValues);
}
This class stores the attribute name and the corresponding attribute values which gets passed to the server or retrieved from the server.
Also see Also Active Directory Design Specification Version 2.0
Object
|
+--ADsAttrDef
Constructors
public ADsAttrDef();
The default constructor.
Methods
public int get_ADsType();
This method gets the ADsType of the attribute.
| Parameter | Description |
| adsType | The ADs Type.
|
See Also Also The IOsObject which contains a list of constants for ADsType.
public String get_AttributeName();
This method gets the attribute name.
Return Value
Returns The attribute name.
public Vector get_AttrValues();
This method gets the values of the attribute.
Return Value
Returns The attribute values.
public void put_ADsType( int adsType);
This method sets the ADsType of the attribute.
| Parameter | Description |
| adsType | The ADs Type.
|
See Also Also The IOsObject which contains a list of constants for ADsType.
public void put_AttributeName( String attributeName);
This method sets the attribute name.
| Parameter | Description |
| attributeName | The attribute name.
|
public void put_AttrValues( Vector attrValues);
This method sets the values of the attribute.
| Parameter | Description |
| attrValues | The attribute values.
|
Fields
- m_adsType
- The ADs type.
- m_attributeName
- The attribute name.
- m_attrValues
- The attribute values.