All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.content.commons.renditions.Renderable Maven / Gradle / Ivy

There is a newer version: 3.0.15
Show newest version
package org.springframework.content.commons.renditions;

import java.io.InputStream;

import org.springframework.content.commons.property.PropertyPath;

public interface Renderable {

    boolean hasRendition(S entity, String mimeType);

    boolean hasRendition(S entity, PropertyPath path, String mimeType);

	InputStream getRendition(S entity, String mimeType);

	InputStream getRendition(S entity, PropertyPath path, String mimeType);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy