Uses of Class
org.apache.wiki.api.exceptions.FilterException
| Package | Description |
|---|---|
| org.apache.wiki.api.exceptions |
JSPWiki's API exceptions package.
|
| org.apache.wiki.api.filters |
Filter's API package of JSPWiki.
|
| org.apache.wiki.filters |
Provides page and content filtering functionality for JSPWiki.
|
| org.apache.wiki.search |
Provides the JSPWiki search functionality.
|
-
Uses of FilterException in org.apache.wiki.api.exceptions
Subclasses of FilterException in org.apache.wiki.api.exceptions Modifier and Type Class Description classRedirectExceptionThis exception may be thrown if a filter wants to reject something and redirect the user elsewhere. -
Uses of FilterException in org.apache.wiki.api.filters
Methods in org.apache.wiki.api.filters that throw FilterException Modifier and Type Method Description voidBasePageFilter. initialize(Engine engine, java.util.Properties properties)If you override this, you should call super.initialize() first.voidBasicPageFilter. initialize(WikiEngine engine, java.util.Properties properties)Deprecated.voidPageFilter. initialize(Engine engine, java.util.Properties properties)Is called whenever the a new PageFilter is instantiated and reset.voidBasicPageFilter. postSave(Context wikiContext, java.lang.String content)Deprecated.voidBasicPageFilter. postSave(WikiContext wikiContext, java.lang.String content)Deprecated.default voidPageFilter. postSave(Context context, java.lang.String content)This method is called after the page has been successfully saved.java.lang.StringBasicPageFilter. postTranslate(Context wikiContext, java.lang.String htmlContent)Deprecated.java.lang.StringBasicPageFilter. postTranslate(WikiContext wikiContext, java.lang.String htmlContent)Deprecated.default java.lang.StringPageFilter. postTranslate(Context context, java.lang.String htmlContent)This method is called after a page has been fed through the translation process, so anything you are seeing here is translated content.java.lang.StringBasicPageFilter. preSave(Context wikiContext, java.lang.String content)Deprecated.java.lang.StringBasicPageFilter. preSave(WikiContext wikiContext, java.lang.String content)Deprecated.default java.lang.StringPageFilter. preSave(Context context, java.lang.String content)This method is called before the page has been saved to the PageProvider.java.lang.StringBasicPageFilter. preTranslate(Context wikiContext, java.lang.String content)Deprecated.java.lang.StringBasicPageFilter. preTranslate(WikiContext wikiContext, java.lang.String content)Deprecated.default java.lang.StringPageFilter. preTranslate(Context context, java.lang.String content)This method is called whenever a page has been loaded from the provider, but not yet been sent through the markup-translation process. -
Uses of FilterException in org.apache.wiki.filters
Methods in org.apache.wiki.filters that throw FilterException Modifier and Type Method Description voidDefaultFilterManager. doPostSaveFiltering(Context context, java.lang.String pageData)Does the page filtering after the page has been saved.voidFilterManager. doPostSaveFiltering(Context context, java.lang.String pageData)Does the page filtering after the page has been saved.java.lang.StringDefaultFilterManager. doPostTranslateFiltering(Context context, java.lang.String htmlData)Does the filtering after HTML translation.java.lang.StringFilterManager. doPostTranslateFiltering(Context context, java.lang.String htmlData)Does the filtering after HTML translation.java.lang.StringDefaultFilterManager. doPreSaveFiltering(Context context, java.lang.String pageData)Does the filtering before a save to the page repository.java.lang.StringFilterManager. doPreSaveFiltering(Context context, java.lang.String pageData)Does the filtering before a save to the page repository.java.lang.StringDefaultFilterManager. doPreTranslateFiltering(Context context, java.lang.String pageData)Does the filtering before a translation.java.lang.StringFilterManager. doPreTranslateFiltering(Context context, java.lang.String pageData)Does the filtering before a translation.voidCreoleFilter. initialize(Engine engine, java.util.Properties props)If you override this, you should call super.initialize() first.voidPageEventFilter. initialize(Engine engine, java.util.Properties properties)Called whenever a new PageFilter is instantiated and reset. -
Uses of FilterException in org.apache.wiki.search
Methods in org.apache.wiki.search that throw FilterException Modifier and Type Method Description voidDefaultSearchManager. initialize(Engine engine, java.util.Properties properties)If you override this, you should call super.initialize() first.Constructors in org.apache.wiki.search that throw FilterException Constructor Description DefaultSearchManager(Engine engine, java.util.Properties properties)Creates a new SearchManager.