summaryrefslogtreecommitdiffstats
path: root/catalog-be/src/main/java/org/openecomp/sdc/be/facade/operations/UserOperation.java
diff options
context:
space:
mode:
Diffstat (limited to 'catalog-be/src/main/java/org/openecomp/sdc/be/facade/operations/UserOperation.java')
-rw-r--r--catalog-be/src/main/java/org/openecomp/sdc/be/facade/operations/UserOperation.java61
1 files changed, 61 insertions, 0 deletions
diff --git a/catalog-be/src/main/java/org/openecomp/sdc/be/facade/operations/UserOperation.java b/catalog-be/src/main/java/org/openecomp/sdc/be/facade/operations/UserOperation.java
new file mode 100644
index 0000000000..c830734498
--- /dev/null
+++ b/catalog-be/src/main/java/org/openecomp/sdc/be/facade/operations/UserOperation.java
@@ -0,0 +1,61 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * SDC
+ * ================================================================================
+ * Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
+ */
+
+package org.openecomp.sdc.be.facade.operations;
+
+import org.openecomp.sdc.be.catalog.api.IStatus;
+import org.openecomp.sdc.be.catalog.impl.DmaapProducer;
+import org.openecomp.sdc.be.dao.api.ActionStatus;
+import org.openecomp.sdc.be.user.UserMessage;
+import org.openecomp.sdc.be.user.UserOperationEnum;
+import org.openecomp.sdc.common.log.wrappers.Logger;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Component;
+
+@Component
+public class UserOperation {
+ private static final Logger log = Logger.getLogger(UserOperation.class);
+ private final DmaapProducer msProducer;
+
+ @Autowired
+ public UserOperation(DmaapProducer msProducer){
+ this.msProducer = msProducer;
+ }
+
+ public ActionStatus updateUserCache(UserOperationEnum operation, String userId, String role){
+ ActionStatus result = ActionStatus.OK;
+ try{
+ UserMessage message = new UserMessage(operation, userId,role);
+ IStatus status = msProducer.pushMessage(message);
+ result = FacadeOperationUtils.convertStatusToActionStatus(status);
+
+ }catch(Exception e){
+ log.debug("update user cache - failed to send notification to update user cache {}", e.getMessage());
+ return ActionStatus.OK;
+ }
+ return result;
+ }
+
+
+ public DmaapProducer getMsProducer() {
+ return msProducer;
+ }
+
+}