public final enum

AckCodeType

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ ebay.apis.eblbasecomponents.AckCodeType

Class Overview

Java class for AckCodeType.

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

 <simpleType name="AckCodeType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}token">
     <enumeration value="Success"/>
     <enumeration value="Failure"/>
     <enumeration value="Warning"/>
     <enumeration value="SuccessWithWarning"/>
     <enumeration value="FailureWithWarning"/>
     <enumeration value="PartialSuccess"/>
     <enumeration value="CustomCode"/>
   </restriction>
 </simpleType>
 

Summary

Enum Values
AckCodeType  CUSTOM_CODE  Reserved for internal or future use. 
AckCodeType  FAILURE  Request processing failed. 
AckCodeType  FAILURE_WITH_WARNING  Request processing failed with some error and warnining information that requesting application should process to determine cause(s) of failure. 
AckCodeType  PARTIAL_SUCCESS  Request processing completed with Partial Success. 
AckCodeType  SUCCESS  Request processing succeeded. 
AckCodeType  SUCCESS_WITH_WARNING  Request processing completed successful with some with some warning information that could be useful for the requesting application to process and/or record. 
AckCodeType  WARNING  Request processing completed with warning information being included in the response message. 
Fields
private final String value
[Expand]
Inherited Fields
From class java.lang.Enum
Public Methods
static AckCodeType fromValue(String v)
String value()
static AckCodeType valueOf(String name)
final static AckCodeType[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final AckCodeType CUSTOM_CODE

Reserved for internal or future use.

public static final AckCodeType FAILURE

Request processing failed.

public static final AckCodeType FAILURE_WITH_WARNING

Request processing failed with some error and warnining information that requesting application should process to determine cause(s) of failure.

public static final AckCodeType PARTIAL_SUCCESS

Request processing completed with Partial Success.

public static final AckCodeType SUCCESS

Request processing succeeded.

public static final AckCodeType SUCCESS_WITH_WARNING

Request processing completed successful with some with some warning information that could be useful for the requesting application to process and/or record.

public static final AckCodeType WARNING

Request processing completed with warning information being included in the response message.

Fields

private final String value

Public Methods

public static AckCodeType fromValue (String v)

Parameters
v

public String value ()

public static AckCodeType valueOf (String name)

Parameters
name

public static final AckCodeType[] values ()