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

io.gs2.realtime.control.DescribeGatheringPoolResult Maven / Gradle / Ivy

There is a newer version: 2.0.1
Show newest version
package io.gs2.realtime.control;

import java.util.List;

import io.gs2.realtime.model.GatheringPool;

/**
 * ギャザリング一覧取得結果。
 * 
 * @author Game Server Services, Inc.
 *
 */
public class DescribeGatheringPoolResult {

	/** ギャザリング一覧 */
	List items;
	/** 次のページを取得するためのトークン */
	String nextPageToken;
	
	/**
	 * 取得したギャザリング数を取得。
	 * 
	 * @return 取得したギャザリング数
	 */
	public Integer getCount() {
		return items == null ? null : items.size();
	}
	
	@Deprecated
	public void setCount(Integer count) {}
	
	/**
	 * 取得したギャザリング一覧を取得。
	 * 
	 * @return ギャザリング一覧
	 */
	public List getItems() {
		return items;
	}
	
	/**
	 * ギャザリング一覧を設定。
	 * 
	 * @param items ギャザリング一覧
	 */
	public void setItems(List items) {
		this.items = items;
	}
	
	/**
	 * 次のページを取得するためのトークンを取得。
	 * 
	 * {@link DescribeGatheringPoolRequest} に指定することで、次のページを取得できます。
	 * 
	 * @return トークン
	 */
	public String getNextPageToken() {
		return nextPageToken;
	}

	public void setNextPageToken(String nextPageToken) {
		this.nextPageToken = nextPageToken;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy