001/*
002 * (C) Copyright 2011 Nuxeo SA (http://nuxeo.com/) and contributors.
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the GNU Lesser General Public License
006 * (LGPL) version 2.1 which accompanies this distribution, and is available at
007 * http://www.gnu.org/licenses/lgpl.html
008 *
009 * This library is distributed in the hope that it will be useful,
010 * but WITHOUT ANY WARRANTY; without even the implied warranty of
011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
012 * Lesser General Public License for more details.
013 *
014 * Contributors:
015 *     Anahide Tchertchian
016 */
017package org.nuxeo.ecm.platform.forms.layout.api.converters;
018
019import java.io.Serializable;
020import java.util.Map;
021
022/**
023 * Context propagated to all layout and widget converters.
024 * <p>
025 * Holds the language (locale) and can also hold a map of serializable objects.
026 *
027 * @since 5.5
028 */
029public class LayoutConversionContext {
030
031    protected String language;
032
033    protected Map<String, Serializable> properties;
034
035    public LayoutConversionContext(String language, Map<String, Serializable> properties) {
036        super();
037        this.language = language;
038        this.properties = properties;
039    }
040
041    public String getLanguage() {
042        return language;
043    }
044
045    public void setLanguage(String language) {
046        this.language = language;
047    }
048
049    public Map<String, Serializable> getProperties() {
050        return properties;
051    }
052
053    public void setProperties(Map<String, Serializable> properties) {
054        this.properties = properties;
055    }
056
057}