Skip to content
Snippets Groups Projects

Resolve "Rest API should follow google guidlines"

Merged Piotr Gawron requested to merge 90-rest-api-should-follow-google-guidlines into master
14 files
+ 289
127
Compare changes
  • Side-by-side
  • Inline
Files
14
  • 714f6d59
    new api for search · 714f6d59
    Piotr Gawron authored
    new api for searching#	new file:   ../rest-api/src/main/java/lcsb/mapviewer/api/projects/models/bioEntities/BioEntitiesRestImpl.java
@@ -23,13 +23,13 @@ public class ReactionsController extends BaseController {
produces = { MediaType.APPLICATION_JSON_VALUE })
public List<Map<String, Object>> getReactions(//
@PathVariable(value = "projectId") String projectId, //
@PathVariable(value = "modelId") String modelId,
@PathVariable(value = "modelId") String modelId, //
@RequestParam(value = "id", defaultValue = "") String id, //
@RequestParam(value = "columns", defaultValue = "") String columns, //
@RequestParam(value = "token") String token, //
@RequestParam(value = "participantId", defaultValue = "") String participantId//
) throws SecurityException {
return reactionController.getReactions(projectId, id, columns, modelId, token, participantId);
return reactionController.getReactions(projectId, id, columns, modelId, token, participantId);
}
}
\ No newline at end of file
Loading