1
0
mirror of https://github.com/Zrips/Jobs.git synced 2024-11-29 14:05:25 +01:00
Jobs/com/gamingmesh/jobs/container/FastPayment.java
Zrips fe2aae14ce Implementation of fast payment method
Tweaks for mcmmo abilities checker
Fix for leaveall
2016-06-28 12:33:28 +03:00

40 lines
760 B
Java

package com.gamingmesh.jobs.container;
import com.gamingmesh.jobs.economy.BufferedPayment;
public class FastPayment {
JobsPlayer jPlayer;
ActionInfo info;
BufferedPayment payment;
Job job;
Long time;
public FastPayment(JobsPlayer jPlayer, ActionInfo info, BufferedPayment payment, Job job) {
this.jPlayer = jPlayer;
this.info = info;
this.payment = payment;
this.job = job;
this.time = System.currentTimeMillis() + 45;
}
public JobsPlayer getPlayer() {
return this.jPlayer;
}
public ActionInfo getInfo() {
return this.info;
}
public BufferedPayment getPayment() {
return this.payment;
}
public Job getJob() {
return this.job;
}
public Long getTime() {
return this.time;
}
}