/** SpagoBI, the Open Source Business Intelligence suite Copyright (C) 2012 Engineering Ingegneria Informatica S.p.A. - SpagoBI Competency Center This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. **/ package it.eng.spagobi.studio.geo.editors.model.geo; import java.io.Serializable; public class MapProvider implements Serializable { /** * */ private static final long serialVersionUID = 454546882825789321L; private String className; private String mapName; public String getClassName() { return className; } public void setClassName(String className) { this.className = className; } public String getMapName() { return mapName; } public void setMapName(String mapName) { this.mapName = mapName; } }