Guest User

Untitled

a guest
Jul 12th, 2021
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.62 KB | None | 0 0
  1.         builder.addFlow(
  2.                 PUBLISH_AD.BRAND.name(),
  3.                 new Select.Runtime(
  4.                         "Какой бренд кроссовок?",
  5.                         userId -> context -> brandRepo.getAll().map(brand -> (brand.getId(), brand.getName()),
  6.                         Select.ONLY_OPTIONS_CHECK_ANSWER,
  7.                         result -> userId -> context -> {
  8.                             System.out.println(result); //result это наш ID
  9.                             return context;
  10.                         },
  11.                         PUBLISH_AD.MODEL.name()
  12.                 )
  13.         );
Advertisement
Add Comment
Please, Sign In to add comment