Interface ADsSearchColumn
public interface ADsSearchColumn
{
// Methods
public String getAttributeName() throws IADsException;
public int getType() throws IADsException;
public Object[] getValues() throws IADsException;
}
This interface specifies ADsSearchColumn.
Also see Also Active Directory Design Specification Version 2.0
Methods
public String getAttributeName() throws IADsException;
Retrieves the attribute name.
Return Value
Returns attribute name
Exceptions
IADsException
failed to perform operation
public int getType() throws IADsException;
Retrieves ADs type.
Return Value
Returns ADs type
Exceptions
IADsException
failed to perform operation
public Object[] getValues() throws IADsException;
Retrieves ADs values.
Return Value
Returns ADs values as an array of Object
Exceptions
IADsException
failed to perform operation