src/main/java/org/apache/sling/api/request/builder/impl/SlingHttpServletResponseResultImpl.java [138:163]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    public void setStatus(final int sc) {
        this.status = sc;
    }

    @Override
    public int getStatus() {
        return this.status;
    }

    @Override
    public void sendError(final int sc, final String msg) {
        this.setStatus(sc);
        this.statusMessage = msg;
        this.isCommitted = true;
    }

    @Override
    public void sendError(final int sc) {
        this.setStatus(sc);
        this.statusMessage = null;
        this.isCommitted = true;
    }

    @Override
    public void sendRedirect(final String location) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/sling/api/request/builder/impl/SlingJakartaHttpServletResponseResultImpl.java [130:155]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    public void setStatus(final int sc) {
        this.status = sc;
    }

    @Override
    public int getStatus() {
        return this.status;
    }

    @Override
    public void sendError(final int sc, final String msg) {
        this.setStatus(sc);
        this.statusMessage = msg;
        this.isCommitted = true;
    }

    @Override
    public void sendError(final int sc) {
        this.setStatus(sc);
        this.statusMessage = null;
        this.isCommitted = true;
    }

    @Override
    public void sendRedirect(final String location) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



