public CraftIpBanEntry(String target, IpBanEntry entry, IpBanList list) { this.list = list; this.target = target; this.created = entry.getCreated() != null ? new Date(entry.getCreated().getTime()) : null; this.source = entry.getSource(); this.expiration = entry.getExpires() != null ? new Date(entry.getExpires().getTime()) : null; this.reason = entry.getReason(); }
public CraftIpBanList(IpBanList list) { this.list = list; }