/* * This software copyright by various authors including the RPTools.net * development team, and licensed under the LGPL Version 3 or, at your * option, any later version. * * Portions of this software were originally covered under the Apache * Software License, Version 1.1 or Version 2.0. * * See the file LICENSE elsewhere in this distribution for license details. */ package net.sbbi.upnp.devices; import java.net.URL; /** * Java Bean for a device icon properties * * @author <a href="mailto:superbonbon@sbbi.net">SuperBonBon</a> * @version 1.0 */ public class DeviceIcon { protected String mimeType; protected int width; protected int height; protected int depth; protected URL url; public String getMimeType() { return mimeType; } public int getWidth() { return width; } public int getHeight() { return height; } public int getDepth() { return depth; } public URL getUrl() { return url; } }