001// License: GPL. For details, see LICENSE file. 002package org.openstreetmap.josm.data.imagery; 003 004/** 005 * 006 * Simple class representing default layer that might be set in imagery information 007 * 008 * This simple class is needed - as for WMS there is different information needed to specify layer than for WMTS 009 * 010 * @author Wiktor Niesiobedzki 011 * 012 */ 013public class DefaultLayer { 014 015 protected String layerName; 016 017 /** 018 * Constructor 019 * @param layerName that is the DefaultLayer 020 */ 021 public DefaultLayer(String layerName) { 022 this.layerName = layerName; 023 } 024 025 /** 026 * @return layer name of the default layer 027 */ 028 public String getLayerName() { 029 return layerName; 030 } 031 032}