20#ifndef ORES_IAM_REPOSITORY_LOGIN_INFO_MAPPER_HPP
21#define ORES_IAM_REPOSITORY_LOGIN_INFO_MAPPER_HPP
24#include "ores.logging/make_logger.hpp"
25#include "ores.iam/domain/login_info.hpp"
26#include "ores.iam/repository/login_info_entity.hpp"
35 inline static std::string_view logger_name =
36 "ores.iam.repository.login_info_mapper";
40 static auto instance = make_logger(logger_name);
48 static std::vector<domain::login_info>
49 map(
const std::vector<login_info_entity>& v);
50 static std::vector<login_info_entity>
51 map(
const std::vector<domain::login_info>& v);
Database persistence layer for IAM domain types.
Definition account_entity.hpp:27
Implements logging infrastructure for ORE Studio.
Definition boost_severity.hpp:28
Represents login tracking and security information for an account.
Definition login_info.hpp:32
Represents login tracking information in the database.
Definition login_info_entity.hpp:32
Maps domain model entities to data storage layer and vice-versa.
Definition login_info_mapper.hpp:33