example.response.Response Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of EpikosRestService Show documentation
Show all versions of EpikosRestService Show documentation
Epikos is a Rest Serivce framework which can be extend to develop any other Rest API/Services. For more
detail please checkout github (https://github.com/epikosrest/epikos.git)
package example.response;
/**
* Created by nitina on 2/19/17.
*/
public class Response {
private String test;
public String getTest() {
return test;
}
public void setTest(String test) {
this.test = test;
}
}