public String getContentType()

in src/main/java/org/apache/sling/servlethelpers/MockSlingHttpServletResponse.java [55:62]


    public String getContentType() {
        if (this.contentType == null) {
            return null;
        } else {
            return this.contentType
                    + (StringUtils.isNotBlank(characterEncoding) ? CHARSET_SEPARATOR + characterEncoding : "");
        }
    }