1 package com.atlassian.plugins.rest.common.template;
2
3 import java.io.IOException;
4
5 /**
6 * Provides a means for REST plugins to use the REST renderer programmatically
7 */
8 public interface Renderer {
9 void render(Object model, String template) throws IOException;
10 }