Migrate "ms/controllerblueprints" from ccsdk/apps
[ccsdk/cds.git] / ms / cds-sdc-listener / application / src / main / java / org / onap / ccsdk / apps / cdssdclistener / service / ListenerServiceImpl.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
9 package org.onap.ccsdk.apps.cdssdclistener.service;
10
11 import java.io.File;
12 import org.springframework.stereotype.Component;
13
14 @Component
15 public class ListenerServiceImpl implements ListenerService {
16
17     @Override
18     public void extractBluePrint(File file) {
19         //TODO
20
21     }
22
23     @Override
24     public void storeBluePrint(File file) {
25         //TODO
26     }
27 }