com.intershop.oms.test.util.InvoiceAggregationInterval Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iom-test-framework Show documentation
Show all versions of iom-test-framework Show documentation
An "SDK"-style library improving test automation for Intershop Order Management.
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;
}
}