HandlerMajorEnd.java 499 B

1234567891011121314151617181920212223
  1. /*
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. package bswfx.handler;
  7. import org.json.JSONObject;
  8. import rsx.BomberStudentHandler;
  9. /**
  10. *
  11. * @author loquicom
  12. */
  13. public class HandlerMajorEnd implements BomberStudentHandler{
  14. @Override
  15. public boolean handle(JSONObject json) {
  16. System.out.println("Fin major");
  17. return true;
  18. }
  19. }