Sun Adapter for LDAP API

com.stc.connector.appconn.ldap
Interface STCNotificationEvent

All Known Implementing Classes:
STCNotificationEventImpl

public interface STCNotificationEvent

STCNotificationEvent interface used for packaging notification event values in case of TimestampSearch & PersistentSearch.

Version:
$Revision: 1.2 $
Author:

Method Summary
 int getEventType()
          Gets the type of this event such as OBJECT_ADDED
 STCAttributes getNewAttributes()
          Gets the new attributes of the entry after modification
 java.lang.String getNewName()
          Gets the new name of the entry after modification
 STCAttributes getOldAttributes()
          Gets the old attributes of the entry before modification
 java.lang.String getOldName()
          Gets the old name of the entry before modification
 void setEventType(int eventType)
          Sets the type of this event such as OBJECT_ADDED
 void setNewAttributes(STCAttributes newAttributes)
          Sets the new attributes of the entry after modification
 void setNewName(java.lang.String newName)
          Sets the new name of the entry after modification
 void setOldAttributes(STCAttributes oldAttributes)
          Sets the old attributes of the entry before modification
 void setOldName(java.lang.String oldName)
          Sets the old name of the entry before modification
 

Method Detail

getOldName

java.lang.String getOldName()
                            throws LDAPApplicationException
Gets the old name of the entry before modification

Returns:
the old name of the entry before modification
Throws:
LDAPApplicationException

setOldName

void setOldName(java.lang.String oldName)
                throws LDAPApplicationException
Sets the old name of the entry before modification

Parameters:
the - old name of the entry before modification
Throws:
LDAPApplicationException

getNewName

java.lang.String getNewName()
                            throws LDAPApplicationException
Gets the new name of the entry after modification

Returns:
the new name of the entry after modification
Throws:
LDAPApplicationException

setNewName

void setNewName(java.lang.String newName)
                throws LDAPApplicationException
Sets the new name of the entry after modification

Parameters:
the - new name of the entry after modification
Throws:
LDAPApplicationException

getOldAttributes

STCAttributes getOldAttributes()
                               throws LDAPApplicationException
Gets the old attributes of the entry before modification

Returns:
the old attributes of the entry before modification
Throws:
LDAPApplicationException

setOldAttributes

void setOldAttributes(STCAttributes oldAttributes)
                      throws LDAPApplicationException
Sets the old attributes of the entry before modification

Parameters:
the - old attributes of the entry before modification
Throws:
LDAPApplicationException

getNewAttributes

STCAttributes getNewAttributes()
                               throws LDAPApplicationException
Gets the new attributes of the entry after modification

Returns:
the new attributes of the entry after modification
Throws:
LDAPApplicationException

setNewAttributes

void setNewAttributes(STCAttributes newAttributes)
                      throws LDAPApplicationException
Sets the new attributes of the entry after modification

Parameters:
the - new attributes of the entry after modification
Throws:
LDAPApplicationException

getEventType

int getEventType()
                 throws LDAPApplicationException
Gets the type of this event such as OBJECT_ADDED

Returns:
the type of this event
Throws:
LDAPApplicationException
See Also:
NamingEvent

setEventType

void setEventType(int eventType)
                  throws LDAPApplicationException
Sets the type of this event such as OBJECT_ADDED

Parameters:
the - type of this event
Throws:
LDAPApplicationException
See Also:
NamingEvent

Sun Adapter for LDAP API