blob: 07753aad168ba94b89e5cebe17b1883f2e8d9a06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/*
@ITMillApache2LicenseForJavaFiles@
*/
package com.vaadin.terminal;
import java.io.Serializable;
/**
* <code>Resource</code> provided to the client terminal. Support for actually
* displaying the resource type is left to the terminal.
*
* @author IT Mill Ltd.
* @version
* @VERSION@
* @since 3.0
*/
public interface Resource extends Serializable{
/**
* Gets the MIME type of the resource.
*
* @return the MIME type of the resource.
*/
public String getMIMEType();
}
|