/** * This file Copyright (c) 2011-2012 Magnolia International * Ltd. (http://www.magnolia-cms.com). All rights reserved. * * * This file is dual-licensed under both the Magnolia * Network Agreement and the GNU General Public License. * You may elect to use one or the other of these licenses. * * This file is distributed in the hope that it will be * useful, but AS-IS and WITHOUT ANY WARRANTY; without even the * implied warranty of MERCHANTABILITY or FITNESS FOR A * PARTICULAR PURPOSE, TITLE, or NONINFRINGEMENT. * Redistribution, except as permitted by whichever of the GPL * or MNA you select, is prohibited. * * 1. For the GPL license (GPL), you can redistribute and/or * modify this file under the terms of the GNU General * Public License, Version 3, as published by the Free Software * Foundation. You should have received a copy of the GNU * General Public License, Version 3 along with this program; * if not, write to the Free Software Foundation, Inc., 51 * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * 2. For the Magnolia Network Agreement (MNA), this file * and the accompanying materials are made available under the * terms of the MNA which accompanies this distribution, and * is available at http://www.magnolia-cms.com/mna.html * * Any modifications to this file must keep this entire header * intact. * */ package info.magnolia.rendering.template.configured; import info.magnolia.rendering.template.AutoGenerationConfiguration; import info.magnolia.rendering.template.RenderableDefinition; import java.util.HashMap; import java.util.Map; import org.apache.commons.lang.builder.ToStringBuilder; /** * A {@link RenderableDefinition} configured in the configuration workspace. * * @version $Id$ */ public class ConfiguredRenderableDefinition implements RenderableDefinition { private String id; private String name; private String title; private String templateScript; private String renderType; private String description; private String i18nBasename; //TODO: use generics again once we get rid of templating-compatibility module private Class modelClass; private AutoGenerationConfiguration autoGeneration = new ConfiguredAutoGeneration(); private Map<String, RenderableDefinition> variations = new HashMap<String, RenderableDefinition>(); protected Map<String, Object> parameters = new HashMap<String, Object>(); @Override public String getId() { return this.id; } @Override public void setId(String id) { this.id = id; } @Override public String getName() { return this.name; } @Override public String getTitle() { return this.title; } @Override public String getTemplateScript() { return this.templateScript; } @Override public String getRenderType() { return renderType; } @Override public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public void setName(String name) { this.name = name; } public void setTemplateScript(String templateScript) { this.templateScript = templateScript; } public void setRenderType(String renderType) { this.renderType = renderType; } public void setTitle(String title) { this.title = title; } @Override public String getI18nBasename() { return this.i18nBasename; } public void setI18nBasename(String basename) { this.i18nBasename = basename; } @Override @SuppressWarnings("rawtypes") public Class getModelClass() { return this.modelClass; } public void setModelClass(Class modelClass) { this.modelClass = modelClass; } @Override public Map<String, RenderableDefinition> getVariations() { return variations; } public void setVariations(Map<String, RenderableDefinition> variations) { this.variations = variations; } public void addVariation(String name, RenderableDefinition variation) { variations.put(name, variation); } @Override public Map<String, Object> getParameters() { return this.parameters; } public void setParameters(Map<String, Object> params) { this.parameters = params; } public void addParameter(String name, Object parameter) { this.parameters.put(name, parameter); } @Override public AutoGenerationConfiguration getAutoGeneration() { return this.autoGeneration; } public void setAutoGeneration(AutoGenerationConfiguration autoGeneration) { this.autoGeneration = autoGeneration; } @Override public String toString() { return new ToStringBuilder(this) .append("id", this.id) .append("name", this.name) .append("renderType", this.renderType) .append("description", this.description) .append("title", this.title) .append("templateScript", this.templateScript) .append("autoGeneration", this.autoGeneration) .toString(); } }