public String getContentType()

in src/main/java/org/apache/sling/jcr/classloader/internal/net/JCRURLConnection.java [540:550]


    public String getContentType() {
        try {
            connect();
            return contentType;
        } catch (IOException ioe) {
            log.info("getContentType: Problem connecting: " + ioe.toString());
            log.debug("dump", ioe);
        }

        return null;
    }