Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. package com.gof.behavioral.chainofresponsibility.handler;
  2.  
  3. import javax.money.MonetaryAmount;
  4.  
  5. /**
  6. * The interface Chain discount.
  7. */
  8. @FunctionalInterface
  9. public interface ChainDiscount {
  10.  
  11. /**
  12. * Handle request monetary amount.
  13. *
  14. * @return the monetary amount
  15. */
  16. MonetaryAmount handleRequest();
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement