Sun Adapter for LDAP API

com.stc.connector.appconn.ldap
Interface Result

All Known Implementing Classes:
ResultImpl

public interface Result

Result interface. This is used to store a single Result & its attributes retrieved from a search operation.

Version:
$Revision: 1.4 $
Author:

Method Summary
 int countSTCAttribute()
          Gets the number of attributes available.
 java.lang.String getName()
          Get the name of the current result.
 STCAttributes getSTCAttributes()
          Get the collection of attributes.
 void reset()
          Method to reset the values
 STCAttribute retrieveSTCAttribute(int i)
          Gets the attribute specified by the index position.
 

Method Detail

getName

java.lang.String getName()
Get the name of the current result.


getSTCAttributes

STCAttributes getSTCAttributes()
Get the collection of attributes.


retrieveSTCAttribute

STCAttribute retrieveSTCAttribute(int i)
                                  throws java.lang.IndexOutOfBoundsException
Gets the attribute specified by the index position.

Parameters:
i - The integer index specifying the position of the attribute to return.
Throws:
java.lang.IndexOutOfBoundsException - if index i < 0 || index i > countAttributes()

countSTCAttribute

int countSTCAttribute()
Gets the number of attributes available.


reset

void reset()
Method to reset the values


Sun Adapter for LDAP API