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

public interface GraphInventoryFluentType<T> extends GraphInventoryFluentTypeBase {

    public interface Info extends GraphInventoryFluentTypeBase.Info {
        String getName();

        UriParams getUriParams();

        public interface UriParams {

        }
    }

    T build();
}