summaryrefslogtreecommitdiffstats
path: root/dcaedt_catalog/service/src/main/java/org/onap/sdc/dcae/catalog/engine/ItemsRequest.java
blob: 92152827619a09f86f4db0cf7c1c52ac1520a796 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.onap.sdc.dcae.catalog.engine;

public class ItemsRequest extends CatalogRequest {

    public static final ItemsRequest EMPTY_REQUEST = new ItemsRequest("Superportfolio");

    private String startingLabel;

    private ItemsRequest(String theLabel) {
        this.startingLabel = theLabel;
    }

    public String getStartingLabel() {
        return this.startingLabel == null ? "Superportfolio" : this.startingLabel;
    }
}