Renaming Files having BluePrint to have Blueprint
[ccsdk/cds.git] / ms / sdclistener / application / src / main / java / org / onap / ccsdk / cds / sdclistener / service / ListenerService.java
1 /*
2  * Copyright © 2019 Bell Canada
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.onap.ccsdk.cds.sdclistener.service;
18
19 import io.grpc.ManagedChannel;
20 import org.onap.sdc.api.results.IDistributionClientDownloadResult;
21
22 import java.nio.file.Path;
23
24 public interface ListenerService {
25
26     /**
27      * Get the controller blueprint archive from CSAR package.
28      *
29      * @param csarArchivePath The path where CSAR archive is stored.
30      * @param cbaArchivePath The destination path where CBA will be stored.
31      */
32     void extractBlueprint(String csarArchivePath, String cbaArchivePath);
33
34     /**
35      * Store the Zip file into CDS database.
36      *
37      * @param path path where zip file exists.
38      * @param managedChannel To access the blueprint processor application end point
39      */
40     void saveBlueprintToCdsDatabase(Path path, ManagedChannel managedChannel);
41
42     /**
43      * Extract and store the csar package to local disk.
44      *
45      * @param result - IDistributionClientDownloadResult contains payload.
46      * @param csarArchivePath The destination path where CSAR will be stored.
47      */
48     void extractCsarAndStore(IDistributionClientDownloadResult result, Path csarArchivePath);
49
50 }