summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/dcae/ci/entities/composition/services/CiService.java
blob: 5a272b6e8c6c28a876bc7770b8baa047aff8c4c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
package org.onap.dcae.ci.entities.composition.services;

import org.onap.dcae.ci.entities.sdc.SdcService;
import org.onap.sdc.dcae.composition.services.Service;

public class CiService extends Service {
    // partial construction - converts from internal SDC object to dcae-ci object (external SDC)
    public CiService(SdcService service) {
        super(service.getName(), service.getUuid(), service.getVersion());
    }
}