* @param adapter The resource adapter.
* @return The consumer config.
*/
protected static GenericConsumerConfig createConfig(GenericResourceAdapter adapter) throws ResourceException
{
GenericConsumerConfig config = new GenericConsumerConfig();
config.setResourceAdapter(adapter);
config.setMaxPoolSize(-1);
return config;
}