public String getResourceSuperType()

in src/main/java/org/apache/sling/mongodb/impl/MongoDBResource.java [92:99]


    public String getResourceSuperType() {
        // get resource type from data
        final Object rt = this.dbObject.get("sling:resourceSuperType");
        if ( rt != null ) {
            return rt.toString();
        }
        return null;
    }