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

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

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

import java.util.List;

/**
 * @author iamaprin
 * @since 2018年3月19日 上午7:52:47
 */
public class RestResponseFactory {

	private RestResponseFactory() {}
	
	public static RestResponse create() {
		return new RestResponse();
	}
	
	public static RestResponse create(Integer code) {
		return new RestResponse().setCode(code);
	}
	
	public static RestResponse create(Integer code, Object data) {
		return new RestResponse().setCode(code).setData(data);
	}
	
	public static RestResponse create(Object data) {
		return new RestResponse(data);
	}
	
	public static  RestResponse create(List list) {
		return new RestListResponse<>(list);
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy