All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.n2oapp.security.admin.impl.userinfo.UserInfoEndpoint Maven / Gradle / Ivy

There is a newer version: 8.0.1
Show newest version
package net.n2oapp.security.admin.impl.userinfo;

import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import java.util.Map;

@RestController
public class UserInfoEndpoint {

    private final UserInfoService userInfoService;

    public UserInfoEndpoint(UserInfoService userInfoService) {
        this.userInfoService = userInfoService;
    }

    @RequestMapping(value = "/userinfo/{accountId}")
    public Map user(@PathVariable Integer accountId) {
        return userInfoService.buildUserInfo(accountId);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy