blob: faa795041d4e7b77aa5f0c17fb15dbcc04025bb5 [file] [log] [blame]
Francesco Furfariec7e1752006-10-02 13:37:04 +00001/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
Francesco Furfarid1072b52006-05-03 07:44:48 +00009 *
Francesco Furfariec7e1752006-10-02 13:37:04 +000010 * http://www.apache.org/licenses/LICENSE-2.0
Francesco Furfarid1072b52006-05-03 07:44:48 +000011 *
Francesco Furfariec7e1752006-10-02 13:37:04 +000012 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
Francesco Furfarid1072b52006-05-03 07:44:48 +000018 */
Francesco Furfariec7e1752006-10-02 13:37:04 +000019
Francesco Furfarid1072b52006-05-03 07:44:48 +000020package org.apache.felix.upnp.sample.clock;
21import java.io.IOException;
22import java.io.InputStream;
23
24import org.osgi.service.upnp.UPnPIcon;
25/*
Karl Paulsd312acc2007-06-18 20:38:33 +000026* @author <a href="mailto:dev@felix.apache.org">Felix Project Team</a>
Francesco Furfarid1072b52006-05-03 07:44:48 +000027*/
28
29public class ClockIcon implements UPnPIcon {
30
31 /* (non-Javadoc)
32 * @see org.osgi.service.upnp.UPnPIcon#getMimeType()
33 */
34 public String getMimeType() {
35 return "image/gif";
36 }
37
38 /* (non-Javadoc)
39 * @see org.osgi.service.upnp.UPnPIcon#getWidth()
40 */
41 public int getWidth() {
42 return 32;
43 }
44
45 /* (non-Javadoc)
46 * @see org.osgi.service.upnp.UPnPIcon#getHeight()
47 */
48 public int getHeight() {
49 return 32;
50 }
51
52 /* (non-Javadoc)
53 * @see org.osgi.service.upnp.UPnPIcon#getSize()
54 */
55 public int getSize() {
56 return 0;
57 }
58
59 /* (non-Javadoc)
60 * @see org.osgi.service.upnp.UPnPIcon#getDepth()
61 */
62 public int getDepth() {
63 return 16;
64 }
65
66 /* (non-Javadoc)
67 * @see org.osgi.service.upnp.UPnPIcon#getInputStream()
68 */
69 public InputStream getInputStream() throws IOException {
70 return ClockIcon.class.getResourceAsStream("images/clock.gif");
71 }
72}