Migrate "ms/controllerblueprints" from ccsdk/apps
[ccsdk/cds.git] / ms / cds-sdc-listener / application / src / main / java / org / onap / ccsdk / apps / cdssdclistener / CdsSdcListenerDto.java
1 /*
2  * Copyright (C) 2019 Bell Canada. All rights reserved.
3  *
4  * NOTICE:  All the intellectual and technical concepts contained herein are
5  * proprietary to Bell Canada and are protected by trade secret or copyright law.
6  * Unauthorized copying of this file, via any medium is strictly prohibited.
7  */
8 package org.onap.ccsdk.apps.cdssdclistener;
9
10 import org.onap.sdc.api.IDistributionClient;
11
12 public class CdsSdcListenerDto {
13
14     private IDistributionClient distributionClient;
15
16     public IDistributionClient getDistributionClient() {
17         return distributionClient;
18     }
19
20     public void setDistributionClient(IDistributionClient distributionClient) {
21         this.distributionClient = distributionClient;
22     }
23 }