io.gs2.realtime.control.DescribeGatheringPoolResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gs2-java-sdk-realtime Show documentation
Show all versions of gs2-java-sdk-realtime Show documentation
Game Server Services SDK for Java GS2-Realtime Library
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;
}
}