com.wavemaker.runtime.security.DemoUserDetailsManager Maven / Gradle / Ivy
The newest version!
/*******************************************************************************
* Copyright (C) 2022-2023 WaveMaker, Inc.
*
* 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.
******************************************************************************/
package com.wavemaker.runtime.security;
import java.util.Collections;
import java.util.List;
import org.springframework.security.core.userdetails.UserDetails;
import org.springframework.security.provisioning.InMemoryUserDetailsManager;
import com.wavemaker.commons.util.SystemUtils;
/**
* Created by nileshk on 16/12/14.
*/
public class DemoUserDetailsManager extends InMemoryUserDetailsManager {
public DemoUserDetailsManager() {
super(Collections.emptyList());
}
@Override
public UserDetails loadUserByUsername(String username) {
UserDetails userDetails = super.loadUserByUsername(username);
String userDetailsUsername = userDetails.getUsername();
String password = SystemUtils.decryptIfEncrypted(userDetails.getPassword());
return new WMUser(userDetailsUsername, userDetailsUsername, password, userDetailsUsername, 1, true, true, true,
true, userDetails.getAuthorities(), System.currentTimeMillis());
}
public void setUsers(List users) {
for (WMUser user : users) {
createUser(user);
}
}
}