public abstract class

AbstractRequestType

extends Object
java.lang.Object
   ↳ ebay.apis.eblbasecomponents.AbstractRequestType
Known Direct Subclasses
Known Indirect Subclasses

Class Overview

Base type definition of request payload that can carry any type of payload content with optional versioning information and detail level requirements.

Java class for AbstractRequestType complex type.

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

 <complexType name="AbstractRequestType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="DetailLevel" type="{urn:ebay:apis:eBLBaseComponents}DetailLevelCodeType" maxOccurs="unbounded" minOccurs="0"/>
         <element name="ErrorLanguage" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="Version" type="{http://www.w3.org/2001/XMLSchema}string"/>
         <any processContents='lax' namespace='' minOccurs="0"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 

Summary

Fields
protected Object any
protected List<DetailLevelCodeType> detailLevel
protected String errorLanguage
protected String version
Public Constructors
AbstractRequestType()
Public Methods
Object getAny()
Gets the value of the any property.
List<DetailLevelCodeType> getDetailLevel()
Gets the value of the detailLevel property.
String getErrorLanguage()
Gets the value of the errorLanguage property.
String getVersion()
Gets the value of the version property.
void setAny(Object value)
Sets the value of the any property.
void setErrorLanguage(String value)
Sets the value of the errorLanguage property.
void setVersion(String value)
Sets the value of the version property.
[Expand]
Inherited Methods
From class java.lang.Object

Fields

protected Object any

protected List<DetailLevelCodeType> detailLevel

protected String errorLanguage

protected String version

Public Constructors

public AbstractRequestType ()

Public Methods

public Object getAny ()

Gets the value of the any property.

Returns
  • possible object is Object Element

public List<DetailLevelCodeType> getDetailLevel ()

Gets the value of the detailLevel property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the detailLevel property.

For example, to add a new item, do as follows:

    getDetailLevel().add(newItem);
 

Objects of the following type(s) are allowed in the list DetailLevelCodeType

public String getErrorLanguage ()

Gets the value of the errorLanguage property.

Returns
  • possible object is String

public String getVersion ()

Gets the value of the version property.

Returns
  • possible object is String

public void setAny (Object value)

Sets the value of the any property.

Parameters
value Allowed object is Object Element

public void setErrorLanguage (String value)

Sets the value of the errorLanguage property.

Parameters
value Allowed object is String

public void setVersion (String value)

Sets the value of the version property.

Parameters
value Allowed object is String