com.melloware.jukes.ws
Class AmazonSearch

java.lang.Object
  extended by com.melloware.jukes.ws.AmazonSearch

public final class AmazonSearch
extends Object

Static methods for performing web services calls to the Amazon E-Commerce Web Services application.

Copyright (c) 1999-2007 Melloware, Inc.

Version:
4.0 AZ Development 2010
Author:
Emil A. Lefkof III

Field Summary
static String SORT_ARTIST
           
static String SORT_DATE
           
static String SORT_TITLE
           
 
Method Summary
static Collection findItemsByArtist(String aArtistName, String endPoint)
          Finds a collection of Amazon products by Artist Name.
static Collection findItemsByArtistDisc(String aArtistName, String aDiscTitle, String endPoint)
          Finds a collection of Amazon products by artist and disc name.
static Collection findItemsByArtistDiscSort(String aArtistName, String aDiscTitle, String endPoint, String aSort)
          Finds a collection of Amazon products by artist and disc name.
static Collection findItemsByDisc(String aDiscTitle, String endPoint)
          Finds a collection of Amazon products by Disc Name.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

SORT_TITLE

public static final String SORT_TITLE
See Also:
Constant Field Values

SORT_ARTIST

public static final String SORT_ARTIST
See Also:
Constant Field Values

SORT_DATE

public static final String SORT_DATE
See Also:
Constant Field Values
Method Detail

findItemsByDisc

public static Collection findItemsByDisc(String aDiscTitle,
                                         String endPoint)
                                  throws WebServiceException
Finds a collection of Amazon products by Disc Name.

Parameters:
aDiscTitle - the name of the disc to search for
endPoint - one of the end-points, according to the region of interest
Returns:
a collection of AmazonItems matching the search criteria
Throws:
WebServiceException - if any error occurs querying the AmazonWebService

findItemsByArtist

public static Collection findItemsByArtist(String aArtistName,
                                           String endPoint)
                                    throws WebServiceException
Finds a collection of Amazon products by Artist Name.

Parameters:
aArtistName - the name of the artist to search for
endPoint - one of the end-points, according to the region of interest
Returns:
a collection of AmazonItems matching the search criteria
Throws:
WebServiceException - if any error occurs querying the AmazonWebService

findItemsByArtistDisc

public static Collection findItemsByArtistDisc(String aArtistName,
                                               String aDiscTitle,
                                               String endPoint)
                                        throws WebServiceException
Finds a collection of Amazon products by artist and disc name.

Parameters:
aArtistName - the name of the artist to search for
aDiscTitle - the name of the disc to search for
endPoint - one of the end-points, according to the region of interest * @return a collection of AmazonItems matching the search criteria
Throws:
WebServiceException - if any error occurs querying the AmazonWebService

findItemsByArtistDiscSort

public static Collection findItemsByArtistDiscSort(String aArtistName,
                                                   String aDiscTitle,
                                                   String endPoint,
                                                   String aSort)
                                            throws WebServiceException
Finds a collection of Amazon products by artist and disc name.

Parameters:
aArtistName - the name of the artist to search for
aDiscTitle - the name of the disc to search for
endPoint - one of the following end-points, according to the region you are interested in. US: ecs.amazonaws.com CA: ecs.amazonaws.ca UK: ecs.amazonaws.co.uk DE: ecs.amazonaws.de FR: ecs.amazonaws.fr JP: ecs.amazonaws.jp
aSort - what field to sort by
Returns:
a collection of AmazonItems matching the search criteria
Throws:
WebServiceException - if any error occurs querying the AmazonWebService


Copyright © 1999-2010 Melloware Inc. All Rights Reserved.