public InternalRequest checkResponseContentType()

in src/main/java/org/apache/sling/servlethelpers/internalrequests/InternalRequest.java [261:267]


    public InternalRequest checkResponseContentType(String contentType) throws IOException {
        assertRequestExecuted();
        if (!contentType.equals(response.getContentType())) {
            throw new IOException("Expected content type " + contentType + " but got " + response.getContentType());
        }
        return this;
    }