fix:brapi-java服务初次提交
This commit is contained in:
40
src/main/java/io/swagger/api/pheno/ObservationLevelsApi.java
Normal file
40
src/main/java/io/swagger/api/pheno/ObservationLevelsApi.java
Normal file
@@ -0,0 +1,40 @@
|
||||
/**
|
||||
* NOTE: This class is auto generated by the swagger code generator program (3.0.18).
|
||||
* https://github.com/swagger-api/swagger-codegen
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
package io.swagger.api.pheno;
|
||||
|
||||
import io.swagger.model.pheno.ObservationLevelListResponse;
|
||||
import io.swagger.annotations.*;
|
||||
|
||||
import org.brapi.test.BrAPITestServer.exceptions.BrAPIServerException;
|
||||
import org.springframework.http.ResponseEntity;
|
||||
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 jakarta.validation.Valid;
|
||||
|
||||
@javax.annotation.processing.Generated(value = "io.swagger.codegen.v3.generators.java.SpringCodegen", date = "2020-03-20T16:32:22.556Z[GMT]")
|
||||
@Api(value = "observationlevels", description = "the observationlevels API")
|
||||
public interface ObservationLevelsApi {
|
||||
|
||||
@ApiOperation(value = "Get the Observation Levels", nickname = "observationlevelsGet", notes = "Call to retrieve the list of supported observation levels. Observation levels indicate the granularity level at which the measurements are taken. `levelName` defines the level, `levelOrder` defines where that level exists in the hierarchy of levels. `levelOrder`s lower numbers are at the top of the hierarchy (ie field > 0) and higher numbers are at the bottom of the hierarchy (ie plant > 6). The values are used to supply the `observationLevel` parameter in the observation unit details call.", response = ObservationLevelListResponse.class, authorizations = {
|
||||
@Authorization(value = "AuthorizationToken") }, tags = { "Observation Units", })
|
||||
@ApiResponses(value = { @ApiResponse(code = 200, message = "OK", response = ObservationLevelListResponse.class),
|
||||
@ApiResponse(code = 400, message = "Bad Request", response = String.class),
|
||||
@ApiResponse(code = 401, message = "Unauthorized", response = String.class),
|
||||
@ApiResponse(code = 403, message = "Forbidden", response = String.class) })
|
||||
@RequestMapping(value = "/observationlevels", produces = { "application/json" }, method = RequestMethod.GET)
|
||||
ResponseEntity<ObservationLevelListResponse> observationlevelsGet(
|
||||
@ApiParam(value = "studyDbId") @Valid @RequestParam(value = "studyDbId", required = false) String studyDbId,
|
||||
@ApiParam(value = "trialDbId") @Valid @RequestParam(value = "trialDbId", required = false) String trialDbId,
|
||||
@ApiParam(value = "programDbId") @Valid @RequestParam(value = "programDbId", required = false) String programDbId,
|
||||
@ApiParam(value = "page") @Valid @RequestParam(value = "page", required = false) Integer page,
|
||||
@ApiParam(value = "pageSize") @Valid @RequestParam(value = "pageSize", required = false) Integer pageSize,
|
||||
@ApiParam(value = "HTTP HEADER - Token used for Authorization <strong> Bearer {token_string} </strong>") @RequestHeader(value = "Authorization", required = false) String authorization)
|
||||
throws BrAPIServerException;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user