org.springframework.content.commons.renditions.Renderable Maven / Gradle / Ivy
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