Package ubic.gemma.core.util
Interface GemmaRestApiClient
- All Known Implementing Classes:
GemmaRestApiClientImpl
public interface GemmaRestApiClient
A minimalist client for accessing Gemma's RESTful API.
- Author:
- poirigui
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interfacestatic interfaceFor endpoints that return no data (i.e.static interfaceFor endpoints that may return an error.static interfaceA response from the API, which is either aGemmaRestApiClient.DataResponseorGemmaRestApiClient.ErrorResponse. -
Method Summary
Modifier and TypeMethodDescriptionvoidClear any credentials.Access a given REST endpoint.Access a given endpoint REST endpoint with parameters.voidsetAuthentication(org.springframework.security.core.Authentication authentication) Set credentials used for authenticating API requests.
-
Method Details
-
getHostUrl
String getHostUrl() -
perform
Access a given REST endpoint.- Throws:
IOException
-
perform
GemmaRestApiClient.Response perform(String endpoint, org.springframework.util.MultiValueMap<String, Object> params) throws IOExceptionAccess a given endpoint REST endpoint with parameters.- Throws:
IOException- if anything goes wrong with I/O including issues with JSON deserialization
-
perform
GemmaRestApiClient.Response perform(String endpoint, String firstParamName, Object firstParamValue, Object... otherParams) throws IOException - Throws:
IOException
-
setAuthentication
void setAuthentication(org.springframework.security.core.Authentication authentication) Set credentials used for authenticating API requests. -
clearAuthentication
void clearAuthentication()Clear any credentials.
-