Adapter Development Kit 6.5 | webMethods Adapter Development Kit Documentation | webMethods Adapter Development Kit Installation and User’s Documentation | Listener Notifications | Listener Implementation | Updating the fillAdapterTypeInfo Method
 
Updating the fillAdapterTypeInfo Method
Update the fillAdapterTypeInfo method of your main adapter class (the WmAdapter implementation) to register your listener notification type. For example:
public void fillAdapterTypeInfo(AdapterTypeInfo info, Locale locale)
{
info.addListenerType(SimpleListener.class.getName());
...