Guest User

Untitled

a guest
Jul 30th, 2017
331
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. public class CoolDown {
  2.  
  3. private UUID uuid;
  4. private long coolDownTime;
  5. private long timeStart;
  6. private String cmd;
  7.  
  8. public CoolDown(UUID uuid, String cmd, long timeStart, long coolDownTime){
  9. this.uuid = uuid;
  10. this.cmd = cmd;
  11. this.timeStart = timeStart;
  12. this.coolDownTime = coolDownTime;
  13. }
  14.  
  15. public UUID getUUID(){
  16. return uuid;
  17. }
  18. public long getTimeStart(){
  19. return timeStart;
  20. }
  21. public long getCoolDownTime(){
  22. return coolDownTime;
  23. }
  24. public String getCommand(){
  25. return cmd;
  26. }
  27.  
  28. }
Advertisement
Add Comment
Please, Sign In to add comment