All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.dronesecurity.userapplication.infrastructure.shipping.OrderConstants Maven / Gradle / Ivy

/*
 * Copyright (c) 2021-2022, Mirko Felice & Maxim Derevyanchenko. All rights reserved.
 * Licensed under the MIT license. See LICENSE file in the project root for details.
 */

package io.github.dronesecurity.userapplication.infrastructure.shipping;

/**
 *  Order related strings.
 */
public final class OrderConstants {

    /**
     * Key for the order identifier.
     */
    public static final String ID = "id";

    /**
     * Key for the events.
     */
    public static final String EVENTS = "events";

    /**
     * Key for the product.
     */
    public static final String PRODUCT = "product";

    /**
     * Key for the client name.
     */
    public static final String CLIENT = "client";

    /**
     * Key for the placing date.
     */
    public static final String PLACING_DATE = "placingDate";

    /**
     * Key for the estimated arrival.
     */
    public static final String ESTIMATED_ARRIVAL = "estimatedArrival";

    /**
     * Key for the new estimated arrival.
     */
    public static final String NEW_ESTIMATED_ARRIVAL = "newEstimatedArrival";

    private OrderConstants() { }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy