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

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

There is a newer version: 939.0.0
Show 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.Long;
import java.lang.String;

import com.ebay.sdk.*;
import com.ebay.soap.eBLBaseComponents.*;
/**
 * Wrapper class of the AddSellingManagerInventoryFolder 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: FolderName - Name of the new Selling Manager inventory folder. *
Input property: ParentFolderID - Unique Folder ID of parent folder. If no ParentFolderID is submitted, Folder * is added to root level. *
Input property: Comment - Contains comments that will be associated with this folder. *
Output property: ReturnedFolderID - New ID of the folder newly created in the user's Selling Manager account. * * @author Ron Murphy * @version 1.0 */ public class AddSellingManagerInventoryFolderCall extends com.ebay.sdk.ApiCall { private String folderName = null; private Long parentFolderID = null; private String comment = null; private Long returnedFolderID=null; /** * Constructor. */ public AddSellingManagerInventoryFolderCall() { } /** * Constructor. * @param apiContext The ApiContext object to be used to make the call. */ public AddSellingManagerInventoryFolderCall(ApiContext apiContext) { super(apiContext); } /** * Adds a new product folder to a user's Selling Manager account. * *
* @throws ApiException * @throws SdkException * @throws Exception * @return The Long object. */ public Long addSellingManagerInventoryFolder() throws com.ebay.sdk.ApiException, com.ebay.sdk.SdkException, java.lang.Exception { AddSellingManagerInventoryFolderRequestType req; req = new AddSellingManagerInventoryFolderRequestType(); if (this.folderName != null) req.setFolderName(this.folderName); if (this.parentFolderID != null) req.setParentFolderID(this.parentFolderID); if (this.comment != null) req.setComment(this.comment); AddSellingManagerInventoryFolderResponseType resp = (AddSellingManagerInventoryFolderResponseType) execute(req); this.returnedFolderID = resp.getFolderID(); return this.getReturnedFolderID(); } /** * Gets the AddSellingManagerInventoryFolderRequestType.comment. * @return String */ public String getComment() { return this.comment; } /** * Sets the AddSellingManagerInventoryFolderRequestType.comment. * @param comment String */ public void setComment(String comment) { this.comment = comment; } /** * Gets the AddSellingManagerInventoryFolderRequestType.folderName. * @return String */ public String getFolderName() { return this.folderName; } /** * Sets the AddSellingManagerInventoryFolderRequestType.folderName. * @param folderName String */ public void setFolderName(String folderName) { this.folderName = folderName; } /** * Gets the AddSellingManagerInventoryFolderRequestType.parentFolderID. * @return Long */ public Long getParentFolderID() { return this.parentFolderID; } /** * Sets the AddSellingManagerInventoryFolderRequestType.parentFolderID. * @param parentFolderID Long */ public void setParentFolderID(Long parentFolderID) { this.parentFolderID = parentFolderID; } /** * Valid after executing the API. * Gets the returned AddSellingManagerInventoryFolderResponseType.returnedFolderID. * * @return Long */ public Long getReturnedFolderID() { return this.returnedFolderID; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy