org.jclouds.sqs.options
Class ListQueuesOptions

java.lang.Object
  extended by org.jclouds.http.options.BaseHttpRequestOptions
      extended by org.jclouds.sqs.options.ListQueuesOptions
All Implemented Interfaces:
org.jclouds.http.options.HttpRequestOptions

public class ListQueuesOptions
extends org.jclouds.http.options.BaseHttpRequestOptions

Contains options supported in the Form API for the ListQueues operation.

Usage

The recommended way to instantiate a ListQueuesOptions object is to statically import ListQueuesOptions.Builder.* and invoke a static creation method followed by an instance mutator (if needed):

import static org.jclouds.sqs.options.ListQueuesOptions.Builder.*

SQSApi connection = // get connection Set queues = connection.listQueuesInRegion(queuePrefix("foo"));

Author:
Adrian Cole
See Also:

Nested Class Summary
static class ListQueuesOptions.Builder
           
 
Field Summary
 
Fields inherited from class org.jclouds.http.options.BaseHttpRequestOptions
formParameters, headers, pathSuffix, payload, queryParameters
 
Constructor Summary
ListQueuesOptions()
           
 
Method Summary
 ListQueuesOptions queuePrefix(String prefix)
          String to use for filtering the list results.
 
Methods inherited from class org.jclouds.http.options.BaseHttpRequestOptions
buildFormParameters, buildPathSuffix, buildQueryParameters, buildRequestHeaders, buildStringPayload, equals, getFirstFormOrNull, getFirstHeaderOrNull, getFirstQueryOrNull, hashCode, replaceHeader, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ListQueuesOptions

public ListQueuesOptions()
Method Detail

queuePrefix

public ListQueuesOptions queuePrefix(String prefix)
String to use for filtering the list results. Only those queues whose name begins with the specified string are returned.

Parameters:
prefix - Maximum 80 characters; alphanumeric characters, hyphens (-), and underscores (_) are allowed.


Copyright © 2009-2013 jclouds. All Rights Reserved.