blob: 6bed47d4d254900ea5ea0bf7d1358a6db0b66156 [file] [log] [blame]
Aharoni, Pavel (pa0916)ca3cb012018-10-22 15:29:57 +03001/*-
2 * ============LICENSE_START=======================================================
3 * OSAM
4 * ================================================================================
5 * Copyright (C) 2018 AT&T
6 * ================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END=========================================================
19 */
20
21
22
23package org.onap.portalapp.service;
24
25import java.util.Set;
26
27import org.onap.portalsdk.core.domain.Role;
28import org.onap.portalsdk.core.domain.User;
29import org.onap.portalsdk.core.logging.logic.EELFLoggerDelegate;
30import org.springframework.stereotype.Service;
31import org.springframework.transaction.annotation.Transactional;
32
33
34@Service("adminAuthExtension")
35@Transactional
36/**
37 * Provides empty implementations of the methods in IAdminAuthExtension.
38 */
39public class AdminAuthExtension implements IAdminAuthExtension {
40
41 private static final EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(AdminAuthExtension.class);
42
43 @Override
44 public void saveUserExtension(User user) {
45 logger.debug(EELFLoggerDelegate.debugLogger, "saveUserExtension");
46 }
47
48 @Override
49 public void editUserExtension(User user) {
50 logger.debug(EELFLoggerDelegate.debugLogger, "editUserExtension");
51 }
52
53 @Override
54 public void saveUserRoleExtension(Set<Role> roles, User user) {
55 logger.debug(EELFLoggerDelegate.debugLogger, "saveUserRoleExtension");
56 }
57
58}