Package io.apicurio.registry.rest.v2
Interface SystemResource
-
@Path("/apis/registry/v2/system") public interface SystemResourceA JAX-RS interface. An implementation of this interface must be provided.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LimitsgetResourceLimits()This operation retrieves the list of limitations on used resources, that are applied on the current instance of Registry.SystemInfogetSystemInfo()This operation retrieves information about the running registry system, such as the version of the software and when it was built.
-
-
-
Method Detail
-
getSystemInfo
@Path("/info") @GET @Produces("application/json") SystemInfo getSystemInfo()This operation retrieves information about the running registry system, such as the version of the software and when it was built.
-
getResourceLimits
@Path("/limits") @GET @Produces("application/json") Limits getResourceLimits()This operation retrieves the list of limitations on used resources, that are applied on the current instance of Registry.
-
-