Enum Class ServiceDeliveryStatusContentType

java.lang.Object
java.lang.Enum<ServiceDeliveryStatusContentType>
de.hybris.platform.ndc182shoppingfacades.messages.orderviewresponse.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="FAILEDTODELIVER"/>
     <enumeration value="INPROGRESS"/>
     <enumeration value="NOTCLAIMED"/>
     <enumeration value="READYTODELIVER"/>
     <enumeration value="READYTOPROCEED"/>
     <enumeration value="REMOVED"/>
     <enumeration value="SUSPENDED"/>
     <enumeration value="UNABLETODELIVER"/>
   </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.
    • FAILEDTODELIVER

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

      public static final ServiceDeliveryStatusContentType INPROGRESS
      The DP 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
    • NOTCLAIMED

      public static final ServiceDeliveryStatusContentType NOTCLAIMED
      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.
    • READYTODELIVER

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

      public static final ServiceDeliveryStatusContentType READYTOPROCEED
      OM is in a position to allow a DP 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.
    • UNABLETODELIVER

      public static final ServiceDeliveryStatusContentType UNABLETODELIVER
      It is not possible for the DP 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)