From afa5c2df6c53dfce43c72c05457ec5a108ae0ed7 Mon Sep 17 00:00:00 2001
From: Alexis de Talhouët <adetalhouet89@gmail.com>
Date: Sun, 13 Jan 2019 16:49:32 -0500
Subject: Implement BluePrintManagementServiceGrpc
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Change-Id: I66a6a3c23b5a3c24ce8d61178f00f053cb8bbbdc
Issue-ID: CCSDK-909
Signed-off-by: Alexis de Talhouët <adetalhouet89@gmail.com>
---
 .../api-definition/proto/BluePrintManagement.proto | 58 ++++++++--------------
 1 file changed, 20 insertions(+), 38 deletions(-)

(limited to 'components/model-catalog/api-definition')

diff --git a/components/model-catalog/api-definition/proto/BluePrintManagement.proto b/components/model-catalog/api-definition/proto/BluePrintManagement.proto
index 55f9466e4..dc0680d57 100644
--- a/components/model-catalog/api-definition/proto/BluePrintManagement.proto
+++ b/components/model-catalog/api-definition/proto/BluePrintManagement.proto
@@ -2,55 +2,37 @@ syntax = "proto3";
 option java_multiple_files = true;
 package org.onap.ccsdk.apps.controllerblueprints.management.api;
 
-message BluePrintUploadInput {
-    CommonHeader commonHeader = 1;
-    string blueprintName = 2;
-    string blueprintVersion = 3;
-    FileChunk fileChunk = 4;
+message BluePrintManagementInput {
+  CommonHeader commonHeader = 1;
+  string blueprintName = 2;
+  string blueprintVersion = 3;
+  FileChunk fileChunk = 4;
 }
 
-message FileChunk {
-    bytes chunk = 1;
-}
-
-message BluePrintUploadOutput {
-    CommonHeader commonHeader = 1;
-    Status status = 3;
-}
-
-message BluePrintRemoveInput {
-    CommonHeader commonHeader = 1;
-    string blueprintName = 2;
-    string blueprintVersion = 3;
+message BluePrintManagementOutput {
+  CommonHeader commonHeader = 1;
+  Status status = 3;
 }
 
-message BluePrintRemoveOutput {
-    CommonHeader commonHeader = 1;
-    Status status = 3;
+message FileChunk {
+  bytes chunk = 1;
 }
 
 message CommonHeader {
-    string timestamp = 1;
-    string originatorId = 23;
-    string requestId = 3;
-    string subRequestId = 4;
-}
-
-message ActionIdentifiers {
-    string blueprintName = 1;
-    string blueprintVersion = 2;
-    string actionName = 3;
-    string mode = 4;
+  string timestamp = 1;
+  string originatorId = 23;
+  string requestId = 3;
+  string subRequestId = 4;
 }
 
 message Status {
-    string timestamp = 1;
-    int32 code = 2;
-    string message = 3;
-    string errorMessage = 4;
+  string timestamp = 1;
+  int32 code = 2;
+  string message = 3;
+  string errorMessage = 4;
 }
 
 service BluePrintManagementService {
-    rpc uploadBlueprint (BluePrintUploadInput) returns (BluePrintUploadOutput);
-    rpc removeBlueprint (BluePrintRemoveInput) returns (BluePrintRemoveOutput);
+  rpc uploadBlueprint (BluePrintManagementInput) returns (BluePrintManagementOutput);
+  rpc removeBlueprint (BluePrintManagementInput) returns (BluePrintManagementOutput);
 }
-- 
cgit