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 voidmapping(WarlockAuthnService.Details source, DefaultWingsUserDetails target)abstract voidmapping(DefaultWingsUserDetails source, WarlockAuthnService.Details target)static DefaultWingsUserDetailsinto(@Nullable() WarlockAuthnService.Details source)create new DefaultWingsUserDetails from the source Details static voidinto(@Nullable() WarlockAuthnService.Details source, @NotNull() DefaultWingsUserDetails target)build the target DefaultWingsUserDetails from the source Details static WarlockAuthnService.Detailsinto(@Nullable() DefaultWingsUserDetails source)create new DefaultWingsUserDetails from the source Details static voidinto(@Nullable() DefaultWingsUserDetails source, @NotNull() WarlockAuthnService.Details target)build the target DefaultWingsUserDetails from the source Details -
-
Method Detail
-
mapping
abstract void mapping(WarlockAuthnService.Details source, DefaultWingsUserDetails target)
-
mapping
abstract void mapping(DefaultWingsUserDetails source, WarlockAuthnService.Details target)
-
into
@NotNull() static DefaultWingsUserDetails into(@Nullable() WarlockAuthnService.Details source)
create new DefaultWingsUserDetails from the source Details
- Parameters:
source- the source from- Returns:
new target
-
into
static void into(@Nullable() WarlockAuthnService.Details source, @NotNull() DefaultWingsUserDetails target)
build the target DefaultWingsUserDetails from the source Details
- Parameters:
source- the source fromtarget- the target into
-
into
@NotNull() static WarlockAuthnService.Details into(@Nullable() DefaultWingsUserDetails source)
create new DefaultWingsUserDetails from the source Details
- Parameters:
source- the source from- Returns:
new target
-
into
static void into(@Nullable() DefaultWingsUserDetails source, @NotNull() WarlockAuthnService.Details target)
build the target DefaultWingsUserDetails from the source Details
- Parameters:
source- the source fromtarget- the target into
-
-
-
-