Skip to content
Snippets Groups Projects
Commit 3f921dcc authored by BEAUVAIS ANTOINE's avatar BEAUVAIS ANTOINE
Browse files

Changed /api/v1/retrieveAll to /api/v1/retrieveItems.

parent 1b616b01
Branches
1 merge request!8Merge 'develop' into 'master'.
......@@ -48,7 +48,7 @@ public class WebMvcConfig implements WebMvcConfigurer {
* API Mapping for retrieving all items.
*/
public static final String MAPPING_RETRIEVEALL = API_FULL_PREFIX +
"/retrieveAll";
"/retrieveItems";
/**
* API Mapping for retrieving all categories.
......
......@@ -24,7 +24,7 @@ import org.springframework.web.bind.annotation.RestController;
* @author BEAUVAIS ANTOINE
*/
@RestController
public class ApiRetrieveInfoController implements IRetrieveInfoController {
public class ApiRetrieveItemsController implements IRetrieveInfoController {
/**
* Returns all products as a JSON response.
......@@ -42,7 +42,7 @@ public class ApiRetrieveInfoController implements IRetrieveInfoController {
try {
db = DatabaseSystem.getInstance();
} catch (DatabaseConnectionException ex) {
Logger.getLogger(ApiRetrieveInfoController.class.getName()).log(
Logger.getLogger(ApiRetrieveItemsController.class.getName()).log(
Level.SEVERE, "Could not connect to database.", ex);
throw new ApiServerErrorException("Database failure.");
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment