- Timestamp:
- 08/14/08 23:14:12 (5 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/geowebcache/src/main/java/org/geowebcache/layer/wms/WMSLayer.java
r321 r324 140 140 public WMSLayer(String layerName, CacheFactory cacheFactory, 141 141 String wmsURL, List<String> mimeFormats, 142 List<Grid> grids, int[] metaWidthHeight) { 142 List<Grid> grids, int[] metaWidthHeight, 143 String vendorParams) { 143 144 144 145 name = layerName; 145 146 initCacheFactory = cacheFactory; 146 147 this.WMSurl = wmsURL; 147 super.mimeFormats = mimeFormats;148 super.grids = grids;148 this.mimeFormats = mimeFormats; 149 this.grids = grids; 149 150 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; 152 154 } 153 155
