Enum Class ServiceDeliveryStatusContentType

java.lang.Object
java.lang.Enum<ServiceDeliveryStatusContentType>
de.hybris.platform.oneorderfacades.oneorder.osin.ServiceDeliveryStatusContentType
All Implemented Interfaces:
Serializable, Comparable<ServiceDeliveryStatusContentType>, Constable

public enum ServiceDeliveryStatusContentType extends Enum<ServiceDeliveryStatusContentType>

Java class for ServiceDeliveryStatusContentType.

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

 <simpleType name="ServiceDeliveryStatusContentType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="DELIVERED"/>
     <enumeration value="EXPIRED"/>
     <enumeration value="FAILED TO DELIVER"/>
     <enumeration value="IN PROGRESS"/>
     <enumeration value="NOT CLAIMED"/>
     <enumeration value="READY TO DELIVER"/>
     <enumeration value="READY TO PROCEED"/>
     <enumeration value="REMOVED"/>
     <enumeration value="SUSPENDED"/>
     <enumeration value="UNABLE TO DELIVER"/>
   </restriction>
 </simpleType>
 
  • Enum Constant Details

    • DELIVERED

      public static final ServiceDeliveryStatusContentType DELIVERED
      Service has been successfully delivered.
    • EXPIRED

      public static final ServiceDeliveryStatusContentType EXPIRED
      Service is no longer available for delivery. Service purchased with an associated time limit for consumption and Service was never claimed. Service having been at least Confirmed is no longer available as the Customer did not claim the Service within a specific time period, as dictated by the Airline.
    • FAILED_TO_DELIVER

      public static final ServiceDeliveryStatusContentType FAILED_TO_DELIVER
      Service could not be delivered due to Airline´s or provider limitations.
    • IN_PROGRESS

      public static final ServiceDeliveryStatusContentType IN_PROGRESS
      The Delivery Provider is in the process of delivering the Service. There is a universal concept that the In progress status may block any further financial transactions; e.g. refund
    • NOT_CLAIMED

      public static final ServiceDeliveryStatusContentType NOT_CLAIMED
      The Service has not been claimed by the Passenger for reasons as a result of Passenger action or inaction. e.g. Passenger no-show, etc.
    • READY_TO_DELIVER

      public static final ServiceDeliveryStatusContentType READY_TO_DELIVER
      Provider is in a position to start delivery of the Service.
    • READY_TO_PROCEED

      public static final ServiceDeliveryStatusContentType READY_TO_PROCEED
      OM is in a position to allow a Delivery Provider to prepare the Service. Customer is entitled to receive the Service. This is typically a trigger for ORA to begin accounting process.
    • REMOVED

      public static final ServiceDeliveryStatusContentType REMOVED
      Service was deleted.
    • SUSPENDED

      public static final ServiceDeliveryStatusContentType SUSPENDED
      Delivery of the Service is suspended as a result of an Airline decision. Can only revert back to the previous status. Exception is that Suspended may go to Removed. This status may be used in case of fraud detection.
    • UNABLE_TO_DELIVER

      public static final ServiceDeliveryStatusContentType UNABLE_TO_DELIVER
      It is not possible for the Delivery Provider to deliver a Service. This could be for reasons of availability, legal or regulatory constraint.
  • Method Details

    • values

      public static ServiceDeliveryStatusContentType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static ServiceDeliveryStatusContentType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • value

      public String value()
    • fromValue

      public static ServiceDeliveryStatusContentType fromValue(String v)