/* * Copyright 2013 Simon Taddiken * * This file is part of Polly HTTP API. * * Polly HTTP API is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or (at * your option) any later version. * * Polly HTTP API is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. * * You should have received a copy of the GNU General Public License along * with Polly HTTP API. If not, see http://www.gnu.org/licenses/. */ package de.skuzzle.polly.http.api.answers; import java.util.Map; /** * <p>This type of answer can be used to render velocity templates and send the result * back to the client. All that needs to be done is to specify a path to the template * file and to provide a context map with data for that template. Instances of this type * can automatically be handled by the server, so that there is no need to provide your * own {@link HttpHandler} if you implement this interface (unless you need special * treatment for your implementation).</p> * * <p>You can obtain concrete instances of this interface using {@link HttpAnswers}.</p> * * @author Simon Taddiken */ public abstract class HttpTemplateAnswer extends AbstractHttpAnswer { public HttpTemplateAnswer(int responseCode) { super(responseCode); this.addHeader("Content-Type", "charset=utf-8"); } /** * Creates a new chained template answer. It will use the template path of the answer * this method was invoked on. The context created by {@link #getAnswer(Map)} will * contain all key-value pairs from this and the passed context. Also, headers and * cookies from both answer will be merged. * * @param other The template answer to chain to this answer. * @return A new HttpTemplateAnswer */ public HttpTemplateAnswer chain(final HttpTemplateAnswer other) { final HttpTemplateAnswer result = new HttpTemplateAnswer(this.getResponseCode()) { @Override public String getName() { return HttpTemplateAnswer.this.getName(); } @Override public void getAnswer(Map<String, Object> mappings) { HttpTemplateAnswer.this.getAnswer(mappings); other.getAnswer(mappings); } }; result.getCookies().addAll(this.getCookies()); result.getCookies().addAll(other.getCookies()); result.getResponseHeaders().putAll(other.getResponseHeaders()); return result; } /** * Returns a relative path to the velocity template file that should be rendered. * * @return relative template file path. */ public abstract String getName(); /** * This method must fill the provided map with own velocity context mappings for the * template that is provided by {@link #getRelativeTemplatePath()}. * * @param mappings Result map for velocity context. */ public abstract void getAnswer(Map<String, Object> mappings); }