Microsoft HomeProductsSearchSupportShopWrite Usspacer.gif Microsoft Home
Microsoft Packages
  In this topic

*Constructors

*Methods

*Fields

 

Packages   Microsoft Packages Next
Package com.ms.adsi   This
Package
Next

 


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

ADsAttrDef

public ADsAttrDef();

The default constructor.

Methods

get_ADsType 

public int get_ADsType();

This method gets the ADsType of the attribute.

ParameterDescription
adsTypeThe ADs Type.

See Also Also The IOsObject which contains a list of constants for ADsType.

get_AttributeName 

public String get_AttributeName();

This method gets the attribute name.

Return Value

Returns The attribute name.

get_AttrValues 

public Vector get_AttrValues();

This method gets the values of the attribute.

Return Value

Returns The attribute values.

put_ADsType 

public void put_ADsType( int adsType);

This method sets the ADsType of the attribute.

ParameterDescription
adsTypeThe ADs Type.

See Also Also The IOsObject which contains a list of constants for ADsType.

put_AttributeName 

public void put_AttributeName( String attributeName);

This method sets the attribute name.

ParameterDescription
attributeNameThe attribute name.

put_AttrValues 

public void put_AttrValues( Vector attrValues);

This method sets the values of the attribute.

ParameterDescription
attrValuesThe attribute values.

Fields 

m_adsType
The ADs type.
m_attributeName
The attribute name.
m_attrValues
The attribute values.

Back To Top © 1997 Microsoft Corporation. All rights reserved. Terms of use.