Update packages to split utils, caching, rest functions to own packages
Merged
requested to merge malowe/eclipsefdn-api-common:malowe/main/q-version-update-3.2.10 into 1.0-release-candidate
5 unresolved threads
To help manage code, a split was established to extract different parts of the core package to their own package. This will help in the long term to keep the code more maintainable.
Merge request reports
Activity
added 1 commit
- 886ce586 - Update packages to split utils, caching, rest functions to own packages
added 1 commit
- 9f846782 - Update packages to split utils, caching, rest functions to own packages
requested review from @zacharysabourin
9 9 * 10 10 * SPDX-License-Identifier: EPL-2.0 11 11 **********************************************************************/ 12 package org.eclipsefoundation.core.model; 12 package org.eclipsefoundation.request.model; 13 13 14 14 import jakarta.ws.rs.core.Response; 15 15 import jakarta.ws.rs.core.Response.Status; 16 16 17 public class Error { 17 public class WebError { changed this line in version 4 of the diff
33 35 34 36 @Override 35 37 public void filter(ContainerRequestContext requestContext) throws IOException { 38 LOGGER.error("TEST: hit the filter"); changed this line in version 4 of the diff
22 21 @Test 23 22 void constructor_acceptsRawHttpStatusCode() { 24 23 int statusCode = 500; 25 Error e = new Error(statusCode, "Is bad"); 24 WebError e = new WebError(statusCode, "Is bad"); changed this line in version 4 of the diff
10 10 * changed this line in version 4 of the diff
requested review from @zacharysabourin
added 7 commits
-
f51e16ce...90db8b90 - 2 commits from branch
eclipsefdn/it/api:1.0-release-candidate - f276b15a - Update packages to split utils, caching, rest functions to own packages
- 84196d84 - Rename request submodule to be http for better naming
- ad46804b - Fix copyright headers in the HTTP package + remove debug logging
- 63bb8333 - Fix caching pacakge for copyright
- 0f65f99d - Switch to 1.0 release snapshot
Toggle commit list-
f51e16ce...90db8b90 - 2 commits from branch
Please register or sign in to reply