X-Git-Url: https://code.wpia.club/?p=gigi.git;a=blobdiff_plain;f=src%2Forg%2Fcacert%2Fgigi%2FdbObjects%2FAssurance.java;h=8f172e51a62f98aafd0d381fcc2b3b6400b3544c;hp=2d7c593489519aa8c88d92f4c4d5ec504384f034;hb=d1080ab12183cad2bab5d1f94bafe67960fbf4c8;hpb=5e56c8322c407bcb17bea38ceeac83fc96446c7e diff --git a/src/org/cacert/gigi/dbObjects/Assurance.java b/src/org/cacert/gigi/dbObjects/Assurance.java index 2d7c5934..8f172e51 100644 --- a/src/org/cacert/gigi/dbObjects/Assurance.java +++ b/src/org/cacert/gigi/dbObjects/Assurance.java @@ -1,7 +1,8 @@ package org.cacert.gigi.dbObjects; -import org.cacert.gigi.database.GigiResultSet; +import org.cacert.gigi.dbObjects.wrappers.DataContainer; +@DataContainer public class Assurance { public enum AssuranceType { @@ -32,15 +33,15 @@ public class Assurance { private String date; - public Assurance(GigiResultSet res) { - super(); - this.id = res.getInt("id"); - this.from = User.getById(res.getInt("from")); - this.to = User.getById(res.getInt("to")); - this.location = res.getString("location"); - this.method = res.getString("method"); - this.points = res.getInt("points"); - this.date = res.getString("date"); + public Assurance(int id, User from, User to, String location, String method, int points, String date) { + this.id = id; + this.from = from; + this.to = to; + this.location = location; + this.method = method; + this.points = points; + this.date = date; + } public User getFrom() {