41039eb28bd8ad527004f768d7e57f4158680167
[ccsdk/cds.git] /
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.cds.cdssdclistener.dto;
9
10 import org.onap.sdc.api.IDistributionClient;
11 import org.springframework.stereotype.Component;
12
13 @Component
14 public class CdsSdcListenerDto {
15
16     private IDistributionClient distributionClient;
17
18     public IDistributionClient getDistributionClient() {
19         return distributionClient;
20     }
21
22     public void setDistributionClient(IDistributionClient distributionClient) {
23         this.distributionClient = distributionClient;
24     }
25 }