aboutsummaryrefslogtreecommitdiffstats
path: root/graph-inventory/aai-client/src/main/java/org/onap/aaiclient/client/graphinventory/GraphInventoryFluentTypeBase.java
blob: 1a258fcd88a9e920efddc85d46c2f0df6eb78e21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.onap.aaiclient.client.graphinventory;

import java.util.List;

public interface GraphInventoryFluentTypeBase {

    public interface Info {
        String getPartialUri();

        List<String> getPaths();
    }

    Object[] values();

    String uriTemplate();
}