Package org.projectnessie.api.v2.http
Interface HttpConfigApi
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NessieConfigurationgetConfig()Get the server configuration.RepositoryConfigResponsegetRepositoryConfig(java.util.List<java.lang.String> repositoryConfigTypes)UpdateRepositoryConfigResponseupdateRepositoryConfig(UpdateRepositoryConfigRequest repositoryConfigUpdate)
-
-
-
Method Detail
-
getConfig
@GET @GET @Produces("application/json") @Produces("application/json") NessieConfiguration getConfig()Description copied from interface:ConfigApiGet the server configuration.
-
getRepositoryConfig
@GET @GET @Path("repository") @Path("repository") @Produces("application/json") @Produces("application/json") RepositoryConfigResponse getRepositoryConfig(@QueryParam("type") @QueryParam("type") java.util.List<java.lang.String> repositoryConfigTypes)- Specified by:
getRepositoryConfigin interfaceConfigApi
-
updateRepositoryConfig
@POST @POST @Path("repository") @Path("repository") @Produces("application/json") @Produces("application/json") UpdateRepositoryConfigResponse updateRepositoryConfig(UpdateRepositoryConfigRequest repositoryConfigUpdate) throws NessieConflictException- Specified by:
updateRepositoryConfigin interfaceConfigApi- Throws:
NessieConflictException
-
-