Okay okay, add the missing files for the Jail Stick for #16.

This commit is contained in:
graywolf336
2014-03-08 22:53:59 -06:00
parent 274f3a03ab
commit df45b267a7
2 changed files with 153 additions and 0 deletions

View File

@ -0,0 +1,32 @@
package com.graywolf336.jail.beans;
/**
* Represents a Jail Stick, contains all the information.
*
* @author graywolf336
* @version 1.0.0
* @since 3.0.0
*
*/
public class Stick {
private String jail, reason;
private long time;
public Stick(String jail, String reason, long time) {
this.jail = jail;
this.reason = reason;
this.time = time;
}
public String getJail() {
return this.jail;
}
public String getJailReason() {
return this.reason;
}
public long getJailTime() {
return this.time;
}
}