Guest User

Untitled

a guest
Feb 13th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. companySiteList.stream()
  2. .filter(companySite -> companySite.getId().equals("ID"))
  3. .map(obj -> obj.getEmployeeList.stream()
  4. .filter(employee -> employee.getId().equals("ID_EMPLOYEE"))
  5. . ... ???
  6. )
  7.  
  8.  
  9. private void orderFurniture(String companyId, String employeeID) {
  10. // code
  11. }
Add Comment
Please, Sign In to add comment