Adapter Development Kit 6.5 | webMethods Adapter Development Kit Documentation | webMethods Adapter Development Kit Installation and User’s Documentation | Polling Notifications | Polling Notification Implementation | Updating the fillAdapterTypeInfo Method
 
Updating the fillAdapterTypeInfo Method
Update the fillAdapterTypeInfo method of your adapter definition class (the WmAdapter implementation class) to register your polling notification type.
For example:
public void fillAdapterTypeInfo(AdapterTypeInfo info, Locale locale)
{
info.addNotificationType(SimpleNotification.class.getName());
}