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

com.descope.proxy.ApiProxy Maven / Gradle / Ivy

The newest version!
package com.descope.proxy;

import com.fasterxml.jackson.core.type.TypeReference;
import java.net.URI;

public interface ApiProxy {
   R get(URI uri, Class returnClz);

   R getArray(URI uri, TypeReference typeReference);

   R post(URI uri, B body, Class returnClz);

   R patch(URI uri, B body, Class returnClz);

   R postAndGetArray(URI uri, B body, TypeReference typeReference);

   R delete(URI uri, B body, Class returnClz);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy