com.windpicker.commons.web.Result Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons Show documentation
Show all versions of commons Show documentation
This project is intended to provide common classes and utils to develop java apps
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