1 package org.onap.ccsdk.sli.adaptors.messagerouter.consumer.provider.impl;
3 import org.onap.ccsdk.sli.adaptors.messagerouter.consumer.api.PullingConsumer;
4 import org.onap.ccsdk.sli.adaptors.messagerouter.consumer.api.RequestHandler;
6 public class PullingConsumerImpl extends AbstractBaseConsumer implements PullingConsumer {
8 public PullingConsumerImpl(String username, String password, String host, String authentication, Integer connectTimeout, Integer readTimeout, String group, String id, String filter, Integer limit, Integer timeoutQueryParamValue) {
9 super(username, password, host, authentication, connectTimeout, readTimeout, group, id, filter, limit, timeoutQueryParamValue);