Package com.orchestranetworks.ui
Interface ResourceType
-
public interface ResourceType
Identifies a type of packaged resource. Packaged resources can be localized and are accessible from a public URL to be used for the user interface display.- See Also:
- Packaged resources
-
-
Field Summary
Fields Modifier and Type Field Description static ResourceType
HTML
HTML document resource.static ResourceType
ICON
Icon resource.static ResourceType
IMAGE
Image file.static ResourceType
JSCRIPT
JavaScript resource.static ResourceType
STYLESHEET
Cascading Style Sheet (CSS) resource.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isInternal()
Returnstrue
if the resources of this type are in theWEB-INF/
directory (that is, not directly accessible using HTTP protocol).
-
-
-
Field Detail
-
HTML
static final ResourceType HTML
HTML document resource.
-
ICON
static final ResourceType ICON
Icon resource.
-
IMAGE
static final ResourceType IMAGE
Image file.
-
JSCRIPT
static final ResourceType JSCRIPT
JavaScript resource.
-
STYLESHEET
static final ResourceType STYLESHEET
Cascading Style Sheet (CSS) resource.
-
-