All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.gs2.ranking.control.CreateRankingTableResult Maven / Gradle / Ivy

package io.gs2.ranking.control;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

import io.gs2.ranking.model.RankingTable;

/**
 * ランキングテーブルの作成結果。
 * 
 * @author Game Server Services, Inc.
 *
 */
@JsonIgnoreProperties(ignoreUnknown=true)
public class CreateRankingTableResult {
	
	RankingTable item;
	
	/**
	 * ランキングテーブルを取得。
	 * 
	 * @return ランキングテーブル
	 */
	public RankingTable getItem() {
		return item;
	}
	
	/**
	 * ランキングテーブルを設定。
	 * 
	 * @param item ランキングテーブル
	 */
	public void setItem(RankingTable item) {
		this.item = item;
	}
	
	/**
	 * ランキングテーブルを設定。
	 * 
	 * @param item ランキングテーブル
	 * @return this
	 */
	public CreateRankingTableResult withItem(RankingTable item) {
		setItem(item);
		return this;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy