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

com.windpicker.commons.web.Result Maven / Gradle / Ivy

Go to download

This project is intended to provide common classes and utils to develop java apps

There is a newer version: 0.1.0
Show newest version
package com.windpicker.commons.web;

/**
* Return entity for api response
* @author Angus Xiao
* @version
* 
*
1.0 (Nov 26, 2015 12:18:04 PM)
*
initiate the class
*
* @see com.windpicker.commons.web.utils.Rslt Rslt */ public class Result { /** * c: result code */ private int c; /** * i: information string */ private String i; /** * r: response object */ private T r; public int getC() { return c; } public void setC(int c) { this.c = c; } public String getI() { return i; } public void setI(String i) { this.i = i; } public T getR() { return r; } public void setR(T r) { this.r = r; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy