![JAR search and dependency download from the Maven repository](/logo.png)
com.ebay.sdk.call.GetStoreOptionsCall Maven / Gradle / Ivy
/*
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.Integer;
import com.ebay.sdk.*;
import com.ebay.soap.eBLBaseComponents.*;
/**
* Wrapper class of the GetStoreOptions 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.
*
Output property: ReturnedBasicThemeArray
- This container consists of the current set of basic themes available for eBay Stores. Each basic theme definition consists of settings like colors, font style, and font size. This theme data can be reused in a SetStore call to set/modify the theme for an eBay Store.
*
Output property: ReturnedAdvancedThemeArray
- This container consists of the current set of advanced themes available for eBay Stores. Each advanced theme definition consists of settings like colors, font style, and font size. This theme data can be reused in a SetStore call to set/modify the theme for an eBay Store. Unlike basic themes, you can use any color scheme with an advanced theme. These themes are suitable for more advanced customization.
*
Output property: ReturnedLogoArray
- An array of logo identifiers for numerous product categories. These LogoID values can be reused in a SetStore call to set the logo for an eBay Store.
*
Output property: ReturnedSubscriptionArray
- This container consists of the different levels of eBay Store subscriptions along with the monthly subscription price.
*
Output property: MaxCategories
- This value indicates the maximum number of categories (meta and leaf) that can be set up in an eBay Store.
*
Output property: MaxCategoryLevels
- This is the maximum number of category levels that can be set up in an eBay Store.
*
* @author Ron Murphy
* @version 1.0
*/
public class GetStoreOptionsCall extends com.ebay.sdk.ApiCall
{
private StoreThemeArrayType returnedBasicThemeArray=null;
private StoreThemeArrayType returnedAdvancedThemeArray=null;
private StoreLogoArrayType returnedLogoArray=null;
private StoreSubscriptionArrayType returnedSubscriptionArray=null;
private Integer maxCategories=null;
private Integer maxCategoryLevels=null;
/**
* Constructor.
*/
public GetStoreOptionsCall() {
}
/**
* Constructor.
* @param apiContext The ApiContext object to be used to make the call.
*/
public GetStoreOptionsCall(ApiContext apiContext) {
super(apiContext);
}
/**
* This call is used to retrieve the current list of eBay Store configuration settings.
*
*
* @throws ApiException
* @throws SdkException
* @throws Exception
* @return The void object.
*/
public void getStoreOptions()
throws com.ebay.sdk.ApiException, com.ebay.sdk.SdkException, java.lang.Exception
{
GetStoreOptionsRequestType req;
req = new GetStoreOptionsRequestType();
GetStoreOptionsResponseType resp = (GetStoreOptionsResponseType) execute(req);
this.returnedBasicThemeArray = resp.getBasicThemeArray();
this.returnedAdvancedThemeArray = resp.getAdvancedThemeArray();
this.returnedLogoArray = resp.getLogoArray();
this.returnedSubscriptionArray = resp.getSubscriptionArray();
this.maxCategories = resp.getMaxCategories();
this.maxCategoryLevels = resp.getMaxCategoryLevels();
}
/**
* Valid after executing the API.
* Gets the returned GetStoreOptionsResponseType.maxCategories.
*
* @return Integer
*/
public Integer getMaxCategories()
{
return this.maxCategories;
}
/**
* Valid after executing the API.
* Gets the returned GetStoreOptionsResponseType.maxCategoryLevels.
*
* @return Integer
*/
public Integer getMaxCategoryLevels()
{
return this.maxCategoryLevels;
}
/**
* Valid after executing the API.
* Gets the returned GetStoreOptionsResponseType.returnedAdvancedThemeArray.
*
* @return StoreThemeArrayType
*/
public StoreThemeArrayType getReturnedAdvancedThemeArray()
{
return this.returnedAdvancedThemeArray;
}
/**
* Valid after executing the API.
* Gets the returned GetStoreOptionsResponseType.returnedBasicThemeArray.
*
* @return StoreThemeArrayType
*/
public StoreThemeArrayType getReturnedBasicThemeArray()
{
return this.returnedBasicThemeArray;
}
/**
* Valid after executing the API.
* Gets the returned GetStoreOptionsResponseType.returnedLogoArray.
*
* @return StoreLogoArrayType
*/
public StoreLogoArrayType getReturnedLogoArray()
{
return this.returnedLogoArray;
}
/**
* Valid after executing the API.
* Gets the returned GetStoreOptionsResponseType.returnedSubscriptionArray.
*
* @return StoreSubscriptionArrayType
*/
public StoreSubscriptionArrayType getReturnedSubscriptionArray()
{
return this.returnedSubscriptionArray;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy