com.melloware.jukes.ws
Class AmazonSearch
java.lang.Object
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
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
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
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 forendPoint - 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 forendPoint - 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 foraDiscTitle - the name of the disc to search forendPoint - 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 foraDiscTitle - the name of the disc to search forendPoint - 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.jpaSort - 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.