Interface AuthnDetailsMapper
-
- All Implemented Interfaces:
public interface AuthnDetailsMapperauto generated by `wgmp` live template
- Since:
2021-02-23
trydofor
-
-
Method Summary
Modifier and Type Method Description abstract voidmap(WarlockAuthnService.Details source, DefaultWingsUserDetails target)abstract voidmap(DefaultWingsUserDetails source, WarlockAuthnService.Details target)static DefaultWingsUserDetailsof(@Nullable() WarlockAuthnService.Details source)create new DefaultWingsUserDetails from the source Details static WarlockAuthnService.Detailsof(@Nullable() DefaultWingsUserDetails source)create new DefaultWingsUserDetails from the source Details static voidto(@Nullable() DefaultWingsUserDetails source, @NotNull() WarlockAuthnService.Details target)build the target DefaultWingsUserDetails from the source Details static voidto(@Nullable() WarlockAuthnService.Details source, @NotNull() DefaultWingsUserDetails target)build the target DefaultWingsUserDetails from the source Details -
-
Method Detail
-
map
abstract void map(WarlockAuthnService.Details source, DefaultWingsUserDetails target)
-
map
abstract void map(DefaultWingsUserDetails source, WarlockAuthnService.Details target)
-
of
@NotNull() static DefaultWingsUserDetails of(@Nullable() WarlockAuthnService.Details source)
create new DefaultWingsUserDetails from the source Details
- Parameters:
source- the source from- Returns:
new target
-
of
@NotNull() static WarlockAuthnService.Details of(@Nullable() DefaultWingsUserDetails source)
create new DefaultWingsUserDetails from the source Details
- Parameters:
source- the source from- Returns:
new target
-
to
static void to(@Nullable() DefaultWingsUserDetails source, @NotNull() WarlockAuthnService.Details target)
build the target DefaultWingsUserDetails from the source Details
- Parameters:
source- the source fromtarget- the target to
-
to
static void to(@Nullable() WarlockAuthnService.Details source, @NotNull() DefaultWingsUserDetails target)
build the target DefaultWingsUserDetails from the source Details
- Parameters:
source- the source fromtarget- the target to
-
-
-
-