Uses of Class
com.xerox.amazonws.sdb.SDBException

Packages that use SDBException
com.xerox.amazonws.sdb   
 

Uses of SDBException in com.xerox.amazonws.sdb
 

Methods in com.xerox.amazonws.sdb that throw SDBException
 SDBResult Domain.batchPutAttributes(Map<String,List<ItemAttribute>> items)
          Batch inserts multiple items w/ attributes
 Domain SimpleDB.createDomain(String name)
          Creates a domain.
 SDBResult Item.deleteAttributes(List<ItemAttribute> attributes)
          Deletes one or more attributes.
 SDBResult Item.deleteAttributes(List<ItemAttribute> attributes, List<Condition> conditions)
          Deletes one or more attributes.
 void SimpleDB.deleteDomain(Domain domain)
          Deletes a domain.
 void SimpleDB.deleteDomain(String name)
          Deletes a domain.
 void Domain.deleteItem(String identifier)
          Deletes an item.
 void Domain.deleteItem(String identifier, List<Condition> conditions)
          Deletes an item, with conditions
 List<ItemAttribute> Item.getAttributes()
          Gets a map of all attributes for this item
 List<ItemAttribute> Item.getAttributes(List<String> attributes)
          Gets selected attributes.
 List<ItemAttribute> Item.getAttributes(String attributeName)
          Deprecated. this didn't work, so I don't expect anyone was using it anyway!
 Map<String,List<String>> Item.getAttributesMap(List<String> attributes)
          Gets selected attributes.
 Domain SimpleDB.getDomain(String domainName)
          Method for getting a Domain object without getting a list of them.
 Item Domain.getItem(String identifier)
          Method for getting an Item object without getting a list of them.
 DomainMetadataResult Domain.getMetadata()
          Returns information about the domain.
 ListDomainsResult SimpleDB.listDomains()
          Returns a list of domains for this account.
 ListDomainsResult SimpleDB.listDomains(String nextToken)
          Returns a list of domains for this account.
 ListDomainsResult SimpleDB.listDomains(String nextToken, int maxResults)
          Gets a list of domains
protected
<T> T
SimpleDB.makeRequestInt(org.apache.http.client.methods.HttpRequestBase method, String action, Map<String,String> params, Class<T> respType)
           
protected
<T> T
Item.makeRequestInt(org.apache.http.client.methods.HttpRequestBase method, String action, Map<String,String> params, Class<T> respType)
           
protected
<T> T
Domain.makeRequestInt(org.apache.http.client.methods.HttpRequestBase method, String action, Map<String,String> params, Class<T> respType)
           
 long Counter.nextValue()
          This method returns the next value, period.
 SDBResult Item.putAttributes(List<ItemAttribute> attributes)
          Creates attributes for this item.
 SDBResult Item.putAttributes(List<ItemAttribute> attributes, List<Condition> conditions)
          Creates attributes for this item.
 QueryWithAttributesResult Domain.selectItems(String selectExpression, String nextToken)
          This method supports selecting items/attributers based on the select syntax
 QueryWithAttributesResult Domain.selectItems(String selectExpression, String nextToken, boolean consistent)
          This method supports selecting items/attributers based on the select syntax
 

Constructors in com.xerox.amazonws.sdb that throw SDBException
Counter(Domain domain, String counterName)
          Constructs a counter, where a value may already be stored.
Counter(Domain domain, String counterName, long initValue)
          Constructs a counter with a specified initial value
Domain(String domainName, String awsAccessId, String awsSecretKey, boolean isSecure, String server, int port)
           
Item(String identifier, String domainName, String awsAccessId, String awsSecretKey, boolean isSecure, int port, String server)