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

com.intershop.oms.test.util.InvoiceAggregationInterval Maven / Gradle / Ivy

There is a newer version: 7.1.0
Show newest version
package com.intershop.oms.test.util;

/**
 * Class provides the possible aggregation intervals for invoices
 */
public enum InvoiceAggregationInterval
{
    AGGREGATE_INVOICES_DAILY(1),
    AGGREGATE_INVOICES_WEEKLY(2),
    AGGREGATE_INVOICES_MONTHLY(3);

    private int id;

    InvoiceAggregationInterval(int id)
    {
        this.id = id;
    }

    public int getId()
    {
        return id;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy