Class MapperConfiguration
java.lang.Object
callofproject.dev.authentication.mapper.MapperConfiguration
@Component("callofproject.dev.authentication.mapper.MapperConfig")
@Lazy
public class MapperConfiguration
extends Object
MapperConfiguration class for mapping entities to DTOs.
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal ICourseMapper
final IEducationMapper
final IExperienceMapper
final ILinkMapper
final IUserMapper
final IUserProfileMapper
final IUserRateMapper
-
Constructor Summary
ConstructorsConstructorDescriptionMapperConfiguration
(ICourseMapper courseMapper, IEducationMapper educationMapper, IExperienceMapper experienceMapper, ILinkMapper linkMapper, IUserMapper userMapper, IUserProfileMapper userProfileMapper, IUserRateMapper userRateMapper) Constructor for MapperConfiguration. -
Method Summary
-
Field Details
-
courseMapper
-
educationMapper
-
experienceMapper
-
linkMapper
-
userMapper
-
userProfileMapper
-
userRateMapper
-
-
Constructor Details
-
MapperConfiguration
public MapperConfiguration(ICourseMapper courseMapper, IEducationMapper educationMapper, IExperienceMapper experienceMapper, ILinkMapper linkMapper, IUserMapper userMapper, IUserProfileMapper userProfileMapper, IUserRateMapper userRateMapper) Constructor for MapperConfiguration.- Parameters:
courseMapper
- The ICourseMapper to be injected.educationMapper
- The IEducationMapper to be injected.experienceMapper
- The IExperienceMapper to be injected.linkMapper
- The ILinkMapper to be injected.userMapper
- The IUserMapper to be injected.userProfileMapper
- The IUserProfileMapper to be injected.userRateMapper
- The IUserRateMapper to be injected.
-