core.dynamic.resources.IDynamicRequestPOST 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 core.dynamic.resources;
import core.exception.EpikosException;
import java.io.IOException;
/**
* Created by nitina on 5/17/16.
*/
public interface IDynamicRequestPOST extends IDynamicRequestGET{
public T getRequest(final Class typeOfRequest) throws EpikosException;
}