Changes since
the last release

com.ebay.soap.eBLBaseComponents
Class SellingManagerFolderDetailsType

java.lang.Object
  extended by com.ebay.soap.eBLBaseComponents.SellingManagerFolderDetailsType
All Implemented Interfaces:
Serializable

public class SellingManagerFolderDetailsType
extends Object
implements Serializable

Contains information about a Selling Manager folder.

Java class for SellingManagerFolderDetailsType complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="SellingManagerFolderDetailsType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="FolderID" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
         <element name="ParentFolderID" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
         <element name="FolderLevel" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
         <element name="FolderName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="FolderComment" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="ChildFolder" type="{urn:ebay:apis:eBLBaseComponents}SellingManagerFolderDetailsType" maxOccurs="unbounded" minOccurs="0"/>
         <element name="CreationTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
         <any/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 

See Also:
Serialized Form

Field Summary
protected  List<Object> any
           
protected  List<SellingManagerFolderDetailsType> childFolder
           
protected  Calendar creationTime
           
protected  String folderComment
           
protected  Long folderID
           
protected  Long folderLevel
           
protected  String folderName
           
protected  Long parentFolderID
           
 
Constructor Summary
SellingManagerFolderDetailsType()
           
 
Method Summary
protected  List<Object> _getAny()
           
protected  List<SellingManagerFolderDetailsType> _getChildFolder()
           
 Object[] getAny()
           
 Object getAny(int idx)
           
 int getAnyLength()
           
 SellingManagerFolderDetailsType[] getChildFolder()
           
 SellingManagerFolderDetailsType getChildFolder(int idx)
           
 int getChildFolderLength()
           
 Calendar getCreationTime()
          Gets the value of the creationTime property.
 String getFolderComment()
          Gets the value of the folderComment property.
 Long getFolderID()
          Gets the value of the folderID property.
 Long getFolderLevel()
          Gets the value of the folderLevel property.
 String getFolderName()
          Gets the value of the folderName property.
 Long getParentFolderID()
          Gets the value of the parentFolderID property.
 Object setAny(int idx, Object value)
           
 void setAny(Object[] values)
           
 SellingManagerFolderDetailsType setChildFolder(int idx, SellingManagerFolderDetailsType value)
           
 void setChildFolder(SellingManagerFolderDetailsType[] values)
           
 void setCreationTime(Calendar value)
          Sets the value of the creationTime property.
 void setFolderComment(String value)
          Sets the value of the folderComment property.
 void setFolderID(Long value)
          Sets the value of the folderID property.
 void setFolderLevel(Long value)
          Sets the value of the folderLevel property.
 void setFolderName(String value)
          Sets the value of the folderName property.
 void setParentFolderID(Long value)
          Sets the value of the parentFolderID property.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

folderID

protected Long folderID

parentFolderID

protected Long parentFolderID

folderLevel

protected Long folderLevel

folderName

protected String folderName

folderComment

protected String folderComment

childFolder

protected List<SellingManagerFolderDetailsType> childFolder

creationTime

protected Calendar creationTime

any

protected List<Object> any
Constructor Detail

SellingManagerFolderDetailsType

public SellingManagerFolderDetailsType()
Method Detail

getFolderID

public Long getFolderID()
Gets the value of the folderID property.

Returns:
possible object is Long

setFolderID

public void setFolderID(Long value)
Sets the value of the folderID property.

Parameters:
value - allowed object is Long

getParentFolderID

public Long getParentFolderID()
Gets the value of the parentFolderID property.

Returns:
possible object is Long

setParentFolderID

public void setParentFolderID(Long value)
Sets the value of the parentFolderID property.

Parameters:
value - allowed object is Long

getFolderLevel

public Long getFolderLevel()
Gets the value of the folderLevel property.

Returns:
possible object is Long

setFolderLevel

public void setFolderLevel(Long value)
Sets the value of the folderLevel property.

Parameters:
value - allowed object is Long

getFolderName

public String getFolderName()
Gets the value of the folderName property.

Returns:
possible object is String

setFolderName

public void setFolderName(String value)
Sets the value of the folderName property.

Parameters:
value - allowed object is String

getFolderComment

public String getFolderComment()
Gets the value of the folderComment property.

Returns:
possible object is String

setFolderComment

public void setFolderComment(String value)
Sets the value of the folderComment property.

Parameters:
value - allowed object is String

getChildFolder

public SellingManagerFolderDetailsType[] getChildFolder()
Returns:
array of SellingManagerFolderDetailsType

getChildFolder

public SellingManagerFolderDetailsType getChildFolder(int idx)
Returns:
one of SellingManagerFolderDetailsType

getChildFolderLength

public int getChildFolderLength()

setChildFolder

public void setChildFolder(SellingManagerFolderDetailsType[] values)
Parameters:
values - allowed objects are SellingManagerFolderDetailsType

_getChildFolder

protected List<SellingManagerFolderDetailsType> _getChildFolder()

setChildFolder

public SellingManagerFolderDetailsType setChildFolder(int idx,
                                                      SellingManagerFolderDetailsType value)
Parameters:
value - allowed object is SellingManagerFolderDetailsType

getCreationTime

public Calendar getCreationTime()
Gets the value of the creationTime property.

Returns:
possible object is String

setCreationTime

public void setCreationTime(Calendar value)
Sets the value of the creationTime property.

Parameters:
value - allowed object is String

getAny

public Object[] getAny()
Returns:
array of Element Object

getAny

public Object getAny(int idx)
Returns:
one of Element Object

getAnyLength

public int getAnyLength()

setAny

public void setAny(Object[] values)
Parameters:
values - allowed objects are Element Object

_getAny

protected List<Object> _getAny()

setAny

public Object setAny(int idx,
                     Object value)
Parameters:
value - allowed object is Element Object

Changes since
the last release

The information contained in this document is proprietary and confidential. Use of this information and the eBay API requires a Non-Disclosure Agreement (NDA) between the user and eBay Inc. For information regarding a qualifying NDA, contact Developer Relations: developer-relations@ebay.com
© 2004-2009 eBay Inc. All rights reserved.