Skip to content
Snippets Groups Projects

Update packages to split utils, caching, rest functions to own packages

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

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
1 package org.eclipsefoundation.caching.namespaces;
  • 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 {
  • 33 35
    34 36 @Override
    35 37 public void filter(ContainerRequestContext requestContext) throws IOException {
    38 LOGGER.error("TEST: hit the filter");
  • 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");
  • 10 10 *
  • Martin Lowe added 2 commits

    added 2 commits

    • b27055b1 - Rename request submodule to be http for better naming
    • 90315132 - Fix copyright headers in the HTTP package + remove debug logging

    Compare with previous version

  • Martin Lowe added 1 commit

    added 1 commit

    • f51e16ce - Fix caching pacakge for copyright

    Compare with previous version

  • Martin Lowe requested review from @zacharysabourin

    requested review from @zacharysabourin

  • Zachary Sabourin approved this merge request

    approved this merge request

  • Martin Lowe changed target branch from main to 1.0-release-candidate

    changed target branch from main to 1.0-release-candidate

  • Martin Lowe added 7 commits

    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

    Compare with previous version

  • Martin Lowe added 1 commit

    added 1 commit

    • 9337883a - Switch to 1.0 release snapshot

    Compare with previous version

  • merged

  • Please register or sign in to reply
    Loading