org.lockss.laaws.rs.api.RepoinfoApi Maven / Gradle / Ivy
/**
* NOTE: This class is auto generated by the swagger code generator program (3.0.52).
* https://github.com/swagger-api/swagger-codegen
* Do not edit the class manually.
*/
package org.lockss.laaws.rs.api;
import org.lockss.util.rest.repo.model.RepositoryInfo;
import org.lockss.util.storage.StorageInfo;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.Parameter;
import io.swagger.v3.oas.annotations.enums.ParameterIn;
import io.swagger.v3.oas.annotations.responses.ApiResponses;
import io.swagger.v3.oas.annotations.responses.ApiResponse;
import io.swagger.v3.oas.annotations.media.ArraySchema;
import io.swagger.v3.oas.annotations.media.Content;
import io.swagger.v3.oas.annotations.media.Schema;
import io.swagger.v3.oas.annotations.security.SecurityRequirement;
import org.springframework.http.ResponseEntity;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestHeader;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RequestPart;
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.bind.annotation.CookieValue;
import jakarta.validation.Valid;
import jakarta.validation.constraints.*;
import java.util.List;
import java.util.Map;
@Validated
public interface RepoinfoApi {
RepoinfoApiDelegate getDelegate();
@Operation(summary = "Get repository information", description = "Get properties of the repository", tags={ "repo" })
@ApiResponses(value = {
@ApiResponse(responseCode = "200", description = "The repository information", content = @Content(mediaType = "application/json", schema = @Schema(implementation = RepositoryInfo.class))),
@ApiResponse(responseCode = "200", description = "The resulting error payload.", content = @Content(mediaType = "application/json", schema = @Schema(implementation = Object.class))) })
@RequestMapping(value = "/repoinfo",
produces = { "application/json" },
method = RequestMethod.GET)
default ResponseEntity getRepositoryInformation() {
return getDelegate().getRepositoryInformation();
}
@Operation(summary = "Get repository storage information", description = "Get properties of the repository storage", tags={ "repo" })
@ApiResponses(value = {
@ApiResponse(responseCode = "200", description = "The repository storage information", content = @Content(mediaType = "application/json", schema = @Schema(implementation = StorageInfo.class))),
@ApiResponse(responseCode = "200", description = "The resulting error payload.", content = @Content(mediaType = "application/json", schema = @Schema(implementation = Object.class))) })
@RequestMapping(value = "/repoinfo/storage",
produces = { "application/json" },
method = RequestMethod.GET)
default ResponseEntity getStorageInfo() {
return getDelegate().getStorageInfo();
}
}