DCAE-D be initial commit
[sdc/dcae-d/dt-be-main.git] / dcaedt_catalog / service / src / main / java / org / onap / sdc / dcae / catalog / engine / ItemsRequest.java
1 package org.onap.sdc.dcae.catalog.engine;
2
3 public class ItemsRequest extends CatalogRequest {
4
5     public static final ItemsRequest EMPTY_REQUEST = new ItemsRequest("Superportfolio");
6
7     private String startingLabel;
8
9     private ItemsRequest(String theLabel) {
10         this.startingLabel = theLabel;
11     }
12
13     public String getStartingLabel() {
14         return this.startingLabel == null ? "Superportfolio" : this.startingLabel;
15     }
16 }