/*- * ============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) { try { UserMessage message = new UserMessage(operation, userId, role); IStatus status = msProducer.pushMessage(message); return FacadeOperationUtils.convertStatusToActionStatus(status); } catch (Exception e) { log.debug("update user cache - failed to send notification to update user cache {}", e.getMessage()); return ActionStatus.OK; } } public DmaapProducer getMsProducer() { return msProducer; } }