Uses of Enum Class
com.dmasone.identity.orders.domain.OrderStatus
Packages that use OrderStatus
Package
Description
Order application services and use-case models.
Order domain model and order-specific business exceptions.
Order HTTP API.
-
Uses of OrderStatus in com.dmasone.identity.orders.application
Methods in com.dmasone.identity.orders.application that return OrderStatusModifier and TypeMethodDescriptionOrderResponse.status()Returns the value of thestatusrecord component.Constructors in com.dmasone.identity.orders.application with parameters of type OrderStatusModifierConstructorDescriptionOrderResponse(UUID id, Long productId, int quantity, OrderStatus status, Instant createdAt) Creates an instance of aOrderResponserecord class. -
Uses of OrderStatus in com.dmasone.identity.orders.domain
Methods in com.dmasone.identity.orders.domain that return OrderStatusModifier and TypeMethodDescriptionCustomerOrder.status()static OrderStatusReturns the enum constant of this class with the specified name.static OrderStatus[]OrderStatus.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.dmasone.identity.orders.domain with parameters of type OrderStatusModifier and TypeMethodDescriptionstatic CustomerOrderCustomerOrder.restore(UUID id, Long productId, int quantity, OrderStatus status, Instant createdAt, String idempotencyKey) -
Uses of OrderStatus in com.dmasone.identity.orders.interfaces.rest
Methods in com.dmasone.identity.orders.interfaces.rest that return OrderStatusModifier and TypeMethodDescriptionOrderDto.status()Returns the value of thestatusrecord component.Constructors in com.dmasone.identity.orders.interfaces.rest with parameters of type OrderStatusModifierConstructorDescriptionOrderDto(UUID id, Long productId, int quantity, OrderStatus status, Instant createdAt) Creates an instance of aOrderDtorecord class.