Adapter Development Kit 6.5 | webMethods Adapter Development Kit Documentation | webMethods Adapter Development Kit Installation and User’s Documentation | Connections | Updating AdapterTypeInfo
 
Updating AdapterTypeInfo
The final step for creating a connection is to link the connection type to the adapter by updating your fillAdapterTypeInfo method in your WmAdapter implementation class. For example, MyAdapter accomplishes this as follows:
import com.mycompany.adapter.myadapter.connections.*;
.
.
.
public void fillAdapterTypeInfo(AdapterTypeInfo info, Locale locale)
{
info.addConnectionFactory(SimpleConnectionFactory.class.getName());
info.addNotificationType(SimpleNotification.class.getName());
}