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

io.vilya.common.api.RestListResponse Maven / Gradle / Ivy

The newest version!
package io.vilya.common.api;

import java.util.List;

/**
 * @author iamaprin
 * @since 2017年10月29日 下午3:42:09
 */
public class RestListResponse extends RestResponse {

	public RestListResponse(List list) {
		setData(createListBean(list));
	}
	
	private ListBean createListBean(List list) {
		ListBean bean = new ListBean<>();
		bean.setList(list);
		bean.setTotal(list == null ? 0 : list.size());
		return bean;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy