5741bf36eb8ad0cb5079154464628bd7a6c55f62
[so.git] /
1 package org.onap.aaiclient.client.graphinventory;
2
3 public interface GraphInventoryFluentType<T> extends GraphInventoryFluentTypeBase {
4
5     public interface Info extends GraphInventoryFluentTypeBase.Info {
6         String getName();
7
8         UriParams getUriParams();
9
10         public interface UriParams {
11
12         }
13     }
14
15     T build();
16 }