You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Resource.java 487B

123456789101112131415161718192021222324
  1. /*
  2. @VaadinApache2LicenseForJavaFiles@
  3. */
  4. package com.vaadin.terminal;
  5. import java.io.Serializable;
  6. /**
  7. * <code>Resource</code> provided to the client terminal. Support for actually
  8. * displaying the resource type is left to the terminal.
  9. *
  10. * @author Vaadin Ltd.
  11. * @since 3.0
  12. */
  13. public interface Resource extends Serializable {
  14. /**
  15. * Gets the MIME type of the resource.
  16. *
  17. * @return the MIME type of the resource.
  18. */
  19. public String getMIMEType();
  20. }