Migrate "ms/controllerblueprints" from ccsdk/apps
[ccsdk/cds.git] / ms / cds-sdc-listener / application / src / main / java / org / onap / ccsdk / cds / cdssdclistener / service / ListenerService.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.cds.cdssdclistener.service;
10
11 import java.io.File;
12
13 public interface ListenerService {
14
15     void extractBluePrint(File file);
16
17     void storeBluePrint(File file);
18 }