Package com.xpn.xwiki.web.sx
Interface SxSource
-
- All Known Implementing Classes:
SxDocumentSource
,SxResourceSource
public interface SxSource
Skin extension source. Can be a document, a resource file, or anything else.- Since:
- 1.7M2
- Version:
- $Id: d98074ebf472ee81c0c6701a6b1d9d8803ac9dcd $
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
SxSource.CachePolicy
Cache policies available for extensions.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SxSource.CachePolicy
getCachePolicy()
String
getContent()
long
getLastModifiedDate()
-
-
-
Method Detail
-
getLastModifiedDate
long getLastModifiedDate()
- Returns:
- the last date at which the extension source has been modified.
-
getContent
String getContent()
- Returns:
- the content of the extension source. For example, a javascript script for a javascript extension.
-
getCachePolicy
SxSource.CachePolicy getCachePolicy()
- Returns:
- the cache policy associated with this extension source.
-
-