package com.eu.habbo.habbohotel.catalog; import java.sql.ResultSet; import java.sql.SQLException; public class ClubOffer { /** * Id of the offer. */ private final int id; /** * Name of the offer */ private final String name; /** * Total days */ private final int days; /** * Price in credits. */ private final int credits; /** * Price in points. */ private final int points; /** * Points type. */ private final int pointsType; /** * Is VIP (Legacy) */ private final boolean vip; /** * If the ClubOffer is an extension deal. */ private final boolean deal; public ClubOffer(ResultSet set) throws SQLException { 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"); } public int getId() { return this.id; } public String getName() { return this.name; } public int getDays() { return this.days; } public int getCredits() { return this.credits; } public int getPoints() { return this.points; } public int getPointsType() { return this.pointsType; } public boolean isVip() { return this.vip; } public boolean isDeal() { return this.deal; } }