this.sqsClient = sqsClient;
}
public SQS(String server, String accessKey, String secretKey) {
AmazonSQSClient sqsClient = new AmazonSQSClient(new BasicAWSCredentials(accessKey, secretKey),
new ClientConfiguration().withProtocol(Util.determineProtocol(server)));
sqsClient.setEndpoint(server);
this.sqsClient = sqsClient;
}