1 package com.atlassian.messagequeue.internal.sqs;
2
3 /**
4 * Configuration for a Queue
5 */
6 public interface SQSQueueConfig {
7
8 /**
9 * @return Name of the queue
10 */
11 String getQueueName();
12
13 /**
14 * @return Url of the Queue
15 */
16 String getQueueUrl();
17 }
18
19