/* Copyright (c) 2001 - 2010 TOPP - www.openplans.org. All rights reserved. * This code is licensed under the GPL 2.0 license, availible at the root * application directory. */ package org.geoserver.wms; public class WatermarkInfoImpl implements WatermarkInfo { boolean enabled; Position position = Position.BOT_RIGHT; int transparency = 255; String url; public boolean isEnabled() { return enabled; } public void setEnabled(boolean enabled) { this.enabled = enabled; } public Position getPosition() { return position; } public void setPosition(Position position) { this.position = position; } public int getTransparency() { return transparency; } public void setTransparency(int transparency) { this.transparency = transparency; } public String getURL() { return url; } public void setURL(String url) { this.url = url; } }