Show
Ignore:
Timestamp:
08/14/08 23:14:12 (5 months ago)
Author:
arneke
Message:

Parse metatiling param from getCapabilitiesConfiguration

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/geowebcache/src/main/java/org/geowebcache/layer/wms/WMSLayer.java

    r321 r324  
    140140    public WMSLayer(String layerName, CacheFactory cacheFactory, 
    141141            String wmsURL, List<String> mimeFormats, 
    142             List<Grid> grids, int[] metaWidthHeight) { 
     142            List<Grid> grids, int[] metaWidthHeight, 
     143            String vendorParams) { 
    143144      
    144145        name = layerName; 
    145146        initCacheFactory = cacheFactory; 
    146147        this.WMSurl = wmsURL; 
    147         super.mimeFormats = mimeFormats; 
    148         super.grids = grids; 
     148        this.mimeFormats = mimeFormats; 
     149        this.grids = grids; 
    149150        this.metaWidthHeight = metaWidthHeight; 
    150         expireClients = GWCVars.CACHE_USE_WMS_BACKEND_VALUE; 
    151         expireCache = GWCVars.CACHE_NEVER_EXPIRE; 
     151        this.expireClients = GWCVars.CACHE_USE_WMS_BACKEND_VALUE; 
     152        this.expireCache = GWCVars.CACHE_NEVER_EXPIRE; 
     153        this.vendorParameters = vendorParams; 
    152154    } 
    153155