Interface ADsObjectInfo
public interface ADsObjectInfo
{
// Methods
public String get_ClassName();
public String get_ObjectDN();
public String get_ObjectRDN();
public String get_ParentDN();
public String get_SchemaDN();
}
This interface defines the get and set methods for the attributes within the interface.
Also see Also Active Directory Design Specification Version 2.0
Methods
public String get_ClassName();
This method gets the class name of the object.
| Parameter | Description |
| className | The class name of the object.
|
public String get_ObjectDN();
This method gets the distinguished name of the object.
Return Value
Returns The distinguished name of the object.
public String get_ObjectRDN();
This method gets the RDN of the object.
Return Value
Returns The relative distinguished name of the object.
public String get_ParentDN();
This method gets the distinguished name of the parent object.
Return Value
Returns The distinguished name of the parent object.
public String get_SchemaDN();
This method gets the distinguished name of the class object for this object.
Return Value
Returns The distinguished name of the class object for this object.