summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/dcae/ci/entities/composition/services/Vfi.java
blob: 4b084d6d09bb5235afbff59e83eb59eac94a770b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package org.onap.dcae.ci.entities.composition.services;

import org.onap.dcae.ci.entities.sdc.SdcService;

public class Vfi {
    private String name;
    private SdcService container;

    public Vfi(String name, SdcService container) {
        this.name = name;
        this.container = container;
    }

    public String getName() {
        return name;
    }

    public SdcService getContainer() {
        return container;
    }
}