3970a36a0bd32114eec34b66d57fd27590bb6879
[so.git] /
1 package org.onap.aaiclient.client.graphinventory;
2
3 import java.util.Collections;
4 import java.util.List;
5
6 public interface GraphInventoryFluentTypeBase {
7
8     public interface Info {
9         default String getPartialUri() {
10             return "";
11         }
12
13         default List<String> getPaths() {
14             return Collections.emptyList();
15         }
16     }
17
18     default Object[] values() {
19         return new Object[] {};
20     }
21
22     default String uriTemplate() {
23         return "";
24     }
25 }