aboutsummaryrefslogtreecommitdiffstats
path: root/graph-inventory/aai-client/src/main/java/org/onap/aaiclient/client/graphinventory/GraphInventoryFluentTypeBase.java
blob: 3970a36a0bd32114eec34b66d57fd27590bb6879 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package org.onap.aaiclient.client.graphinventory;

import java.util.Collections;
import java.util.List;

public interface GraphInventoryFluentTypeBase {

    public interface Info {
        default String getPartialUri() {
            return "";
        }

        default List<String> getPaths() {
            return Collections.emptyList();
        }
    }

    default Object[] values() {
        return new Object[] {};
    }

    default String uriTemplate() {
        return "";
    }
}