Arcturus-Community/src/main/java/com/eu/habbo/habbohotel/catalog/ClubOffer.java

73 lines
1.3 KiB
Java
Raw Normal View History

2018-07-06 15:30:00 +02:00
package com.eu.habbo.habbohotel.catalog;
import java.sql.ResultSet;
import java.sql.SQLException;
2019-05-26 20:14:53 +02:00
public class ClubOffer {
2018-07-08 23:32:00 +02:00
2018-07-06 15:30:00 +02:00
private final int id;
2018-07-08 23:32:00 +02:00
2018-07-06 15:30:00 +02:00
private final String name;
2018-07-08 23:32:00 +02:00
2018-07-06 15:30:00 +02:00
private final int days;
2018-07-08 23:32:00 +02:00
2018-07-06 15:30:00 +02:00
private final int credits;
2018-07-08 23:32:00 +02:00
2018-07-06 15:30:00 +02:00
private final int points;
2018-07-08 23:32:00 +02:00
2018-07-06 15:30:00 +02:00
private final int pointsType;
2018-07-08 23:32:00 +02:00
2018-07-06 15:30:00 +02:00
private final boolean vip;
2018-07-08 23:32:00 +02:00
2018-07-06 15:30:00 +02:00
private final boolean deal;
2019-05-26 20:14:53 +02:00
public ClubOffer(ResultSet set) throws SQLException {
2018-07-06 15:30:00 +02:00
this.id = set.getInt("id");
this.name = set.getString("name");
this.days = set.getInt("days");
this.credits = set.getInt("credits");
this.points = set.getInt("points");
this.pointsType = set.getInt("points_type");
this.vip = set.getString("type").equalsIgnoreCase("vip");
this.deal = set.getString("deal").equals("1");
}
2019-05-26 20:14:53 +02:00
public int getId() {
2018-07-06 15:30:00 +02:00
return this.id;
}
2019-05-26 20:14:53 +02:00
public String getName() {
2018-07-06 15:30:00 +02:00
return this.name;
}
2019-05-26 20:14:53 +02:00
public int getDays() {
2018-07-06 15:30:00 +02:00
return this.days;
}
2019-05-26 20:14:53 +02:00
public int getCredits() {
2018-07-06 15:30:00 +02:00
return this.credits;
}
2019-05-26 20:14:53 +02:00
public int getPoints() {
2018-07-06 15:30:00 +02:00
return this.points;
}
2019-05-26 20:14:53 +02:00
public int getPointsType() {
2018-07-06 15:30:00 +02:00
return this.pointsType;
}
2019-05-26 20:14:53 +02:00
public boolean isVip() {
2018-07-06 15:30:00 +02:00
return this.vip;
}
2019-05-26 20:14:53 +02:00
public boolean isDeal() {
2018-07-06 15:30:00 +02:00
return this.deal;
}
}