Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

AuthorizationImpl.java 503B

123456789101112131415161718
  1. public class AuthorizationImpl implements AuthorizationAdmin {
  2. /* ========== interface Authorization ============*/
  3. public boolean mayPerform(String user, String action) {
  4. System.out.println("mayPerform() executing");
  5. return true;
  6. }
  7. /* ========== interface AuthorizationAdmin ============*/
  8. public boolean mayPerform2(String user, String action) {
  9. System.out.println("mayPerform2() executing");
  10. return true;
  11. }
  12. }