Adapter Development Kit 6.5 | webMethods Adapter Development Kit Documentation | webMethods Adapter Development Kit Installation and User’s Documentation | Listener Notifications | Listener Notification Implementation | Updating the fillAdapterTypeInfo Method
 
Updating the fillAdapterTypeInfo Method
Next, register the new notification type in the fillAdapterTypeInfo method of the main adapter class, as follows:
public void fillAdapterTypeInfo(AdapterTypeInfo info, Locale locale)
{
...
info.addNotificationType(SessionLogListenerNotification.class.getName());
...