Package | Description |
---|---|
org.glyptodon.guacamole.net.basic.extension |
Classes which represent and facilitate the loading of extensions to the
Guacamole web application.
|
org.glyptodon.guacamole.net.basic.resource |
Classes which describe and provide access to arbitrary resources, such as
the contents of the classpath of a classloader, or files within the web
application itself.
|
Modifier and Type | Method and Description |
---|---|
Resource |
Extension.getLargeIcon()
Returns the resource for the large favicon for the extension.
|
Resource |
Extension.getSmallIcon()
Returns the resource for the small favicon for the extension.
|
Modifier and Type | Method and Description |
---|---|
Map<String,Resource> |
Extension.getCSSResources()
Returns a map of all declared CSS resources associated with this
extension, where the key of each entry in the map is the path to that
resource within the extension .jar.
|
Map<String,Resource> |
Extension.getJavaScriptResources()
Returns a map of all declared JavaScript resources associated with this
extension, where the key of each entry in the map is the path to that
resource within the extension .jar.
|
Map<String,Resource> |
LanguageResourceService.getLanguageResources()
Returns a map of all languages currently associated with this service,
where the key of each map entry is the language key.
|
Map<String,Resource> |
Extension.getStaticResources()
Returns a map of all declared resources associated with this extension,
where these resources are not already associated as JavaScript, CSS, or
translation resources.
|
Map<String,Resource> |
Extension.getTranslationResources()
Returns a map of all declared translation resources associated with this
extension, where the key of each entry in the map is the path to that
resource within the extension .jar.
|
Modifier and Type | Method and Description |
---|---|
void |
LanguageResourceService.addLanguageResource(String key,
Resource resource)
Adds or overlays the given language resource, which need not exist in
the ServletContext.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractResource
Base abstract resource implementation which provides an associated mimetype,
and modification time.
|
class |
ByteArrayResource
A resource which contains a defined byte array.
|
class |
ClassPathResource
A resource which is located within the classpath of an arbitrary
ClassLoader.
|
class |
SequenceResource
A resource which is the logical concatenation of other resources.
|
class |
WebApplicationResource
A resource which is located within the classpath associated with another
class.
|
Constructor and Description |
---|
ResourceServlet(Resource resource)
Creates a new ResourceServlet which serves the given Resource for all
HTTP GET requests.
|
SequenceResource(Resource... resources)
Creates a new SequenceResource as the logical concatenation of the
given resources.
|
SequenceResource(String mimetype,
Resource... resources)
Creates a new SequenceResource as the logical concatenation of the
given resources.
|
Constructor and Description |
---|
SequenceResource(Iterable<Resource> resources)
Creates a new SequenceResource as the logical concatenation of the
given resources.
|
SequenceResource(String mimetype,
Iterable<Resource> resources)
Creates a new SequenceResource as the logical concatenation of the
given resources.
|
Copyright © 2016. All rights reserved.