All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ebay.sdk.call.GetAllBiddersCall Maven / Gradle / Ivy

The newest version!
/*
Copyright (c) 2013 eBay, Inc.
This program is licensed under the terms of the eBay Common Development and
Distribution License (CDDL) Version 1.0 (the "License") and any subsequent  version 
thereof released by eBay.  The then-current version of the License can be found 
at http://www.opensource.org/licenses/cddl1.php and in the eBaySDKLicense file that 
is under the eBay SDK ../docs directory.
*/

package com.ebay.sdk.call;

import java.lang.Boolean;

import com.ebay.sdk.*;
import com.ebay.soap.eBLBaseComponents.*;
/**
 * Wrapper class of the GetAllBidders call of eBay SOAP API.
 * 
*

Title: SOAP API wrapper library.

*

Description: Contains wrapper classes for eBay SOAP APIs.

*

Copyright: Copyright (c) 2009

*

Company: eBay Inc.

*
Input property: ItemID - The ID of the item. The bidders who bid on this item are returned. *
Input property: CallMode - Specifies which bidder information to return. *
Input property: IncludeBiddingSummary - Specifies whether return BiddingSummary container for each offer. *
Output property: ReturnedBidArray - Contains a list of OfferType objects. Each * OfferType object represents the data for one bidder and bid. *
Output property: ReturnedHighBidder - eBay user ID for the user with the highest bid (or the earliest timestamp, in the event of a tie); a second chance offer candidate. *
Output property: ReturnedHighestBid - Bid amount offered by the HighBidder. *
Output property: ReturnedListingStatus - Specifies an active or ended listing's status in eBay's processing workflow. * If a listing ends with a sale (or sales), eBay needs to update the sale details (e.g., winning bidder) and other information. This processing * can take several minutes. If you retrieve a sold item, use this listing status information to determine whether eBay has finished processing the listing so that you can be sure the winning bidder and other details are correct and complete. * * @author Ron Murphy * @version 1.0 */ public class GetAllBiddersCall extends com.ebay.sdk.ApiCall { private String itemID = null; private GetAllBiddersModeCodeType callMode = null; private Boolean includeBiddingSummary = null; private OfferType[] returnedBidArray=null; private String returnedHighBidder=null; private AmountType returnedHighestBid=null; private ListingStatusCodeType returnedListingStatus=null; /** * Constructor. */ public GetAllBiddersCall() { } /** * Constructor. * @param apiContext The ApiContext object to be used to make the call. */ public GetAllBiddersCall(ApiContext apiContext) { super(apiContext); } /** * Provides three modes for retrieving a list of the users that bid on * a listing. * *
* @throws ApiException one or more errors reported by an API call. * @throws SdkException The super class of all SDK exception types. * @throws Exception * @return The OfferType[] object. */ public OfferType[] getAllBidders() throws com.ebay.sdk.ApiException, com.ebay.sdk.SdkException, java.lang.Exception { GetAllBiddersRequestType req; req = new GetAllBiddersRequestType(); req.setDetailLevel(this.getDetailLevel()); if (this.itemID != null) req.setItemID(this.itemID); if (this.callMode != null) req.setCallMode(this.callMode); if (this.includeBiddingSummary != null) req.setIncludeBiddingSummary(this.includeBiddingSummary); GetAllBiddersResponseType resp = (GetAllBiddersResponseType) execute(req); this.returnedBidArray = (resp.getBidArray() == null? null: resp.getBidArray().getOffer()); this.returnedHighBidder = resp.getHighBidder(); this.returnedHighestBid = resp.getHighestBid(); this.returnedListingStatus = resp.getListingStatus(); return this.getReturnedBidArray(); } /** * Gets the GetAllBiddersRequestType.callMode. * @return GetAllBiddersModeCodeType */ public GetAllBiddersModeCodeType getCallMode() { return this.callMode; } /** * Sets the GetAllBiddersRequestType.callMode. * @param callMode GetAllBiddersModeCodeType */ public void setCallMode(GetAllBiddersModeCodeType callMode) { this.callMode = callMode; } /** * Gets the GetAllBiddersRequestType.includeBiddingSummary. * @return Boolean */ public Boolean getIncludeBiddingSummary() { return this.includeBiddingSummary; } /** * Sets the GetAllBiddersRequestType.includeBiddingSummary. * @param includeBiddingSummary Boolean */ public void setIncludeBiddingSummary(Boolean includeBiddingSummary) { this.includeBiddingSummary = includeBiddingSummary; } /** * Gets the GetAllBiddersRequestType.itemID. * @return String */ public String getItemID() { return this.itemID; } /** * Sets the GetAllBiddersRequestType.itemID. * @param itemID String */ public void setItemID(String itemID) { this.itemID = itemID; } /** * Valid after executing the API. * Gets the returned GetAllBiddersResponseType.returnedBidArray. * * @return OfferType[] */ public OfferType[] getReturnedBidArray() { return this.returnedBidArray; } /** * Valid after executing the API. * Gets the returned GetAllBiddersResponseType.returnedHighBidder. * * @return String */ public String getReturnedHighBidder() { return this.returnedHighBidder; } /** * Valid after executing the API. * Gets the returned GetAllBiddersResponseType.returnedHighestBid. * * @return AmountType */ public AmountType getReturnedHighestBid() { return this.returnedHighestBid; } /** * Valid after executing the API. * Gets the returned GetAllBiddersResponseType.returnedListingStatus. * * @return ListingStatusCodeType */ public ListingStatusCodeType getReturnedListingStatus() { return this.returnedListingStatus; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy