src/main/java/org/apache/sling/api/request/builder/SlingHttpServletResponseResult.java [44:84]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    long getContentLength();

    /**
     * Gets the status message
     *
     * @return the status message or {@code null}.
     */
    @Nullable
    String getStatusMessage();

    /**
     * Gets the named cookie.
     *
     * @param name the name of the cookie
     * @return the cookie or {@code null} if no cookie with that name exists
     */
    @Nullable
    Cookie getCookie(String name);

    /**
     * Gets all cookies.
     *
     * @return the array of cookies or {@code null} if no cookies were set
     */
    @Nullable
    Cookie[] getCookies();

    /**
     * Gets the output as a byte array.
     *
     * @return the output as a byte array
     */
    byte[] getOutput();

    /**
     * Gets the output as a string.
     *
     * @return the output as a string
     */
    @NotNull
    String getOutputAsString();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/sling/api/request/builder/SlingJakartaHttpServletResponseResult.java [41:81]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    long getContentLength();

    /**
     * Gets the status message
     *
     * @return the status message or {@code null}.
     */
    @Nullable
    String getStatusMessage();

    /**
     * Gets the named cookie.
     *
     * @param name the name of the cookie
     * @return the cookie or {@code null} if no cookie with that name exists
     */
    @Nullable
    Cookie getCookie(String name);

    /**
     * Gets all cookies.
     *
     * @return the array of cookies or {@code null} if no cookies were set
     */
    @Nullable
    Cookie[] getCookies();

    /**
     * Gets the output as a byte array.
     *
     * @return the output as a byte array
     */
    byte[] getOutput();

    /**
     * Gets the output as a string.
     *
     * @return the output as a string
     */
    @NotNull
    String getOutputAsString();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



