aboutsummaryrefslogtreecommitdiffstats
path: root/graph-inventory/aai-client/src/main/java/org/onap/aaiclient/client/graphinventory/GraphInventoryFluentType.java
blob: 94fa240244907d8f7bf6c3607ac75ddec7324ad2 (plain)
1
2
3
4
5
6
7
8
9
10
package org.onap.aaiclient.client.graphinventory;

public interface GraphInventoryFluentType<T> extends GraphInventoryFluentTypeBase {

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

    T build();
}