aboutsummaryrefslogtreecommitdiffstats
path: root/workflow-designer-be/src/main/java/org/onap/sdc/workflow/services/types/PagingConstants.java
blob: f92abf6b606d0774c2266ef0fd1ccce8fee4567f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package org.onap.sdc.workflow.services.types;

public class PagingConstants {

    public static final int DEFAULT_OFFSET = 0;
    public static final int DEFAULT_LIMIT = 200;
    public static final int MAX_LIMIT = 2000;

    private PagingConstants() {
        throw new IllegalStateException("Constants class");
    }
}