Uses of Class
org.apache.wiki.api.exceptions.ProviderException
| Package | Description |
|---|---|
| org.apache.wiki |
The chief package of JSPWiki.
|
| org.apache.wiki.api.core |
JSPWiki's central API.
|
| org.apache.wiki.api.providers |
Page Providers' API package of JSPWiki.
|
| org.apache.wiki.attachment |
Attachment management, uploading and downloading.
|
| org.apache.wiki.pages |
Entry point for JSPWiki's Page Objects.
|
| org.apache.wiki.plugin |
Provides plugins to the JSPWiki.
|
| org.apache.wiki.providers |
Provides storage for JSPWiki.
|
| org.apache.wiki.references |
Provides the JSPWiki track of pages' references.
|
| org.apache.wiki.search |
Provides the JSPWiki search functionality.
|
| org.apache.wiki.tags |
Provides standard JSP tags for JSPWiki.
|
| org.apache.wiki.ui |
Java classes for management of the JSP user interface.
|
-
Uses of ProviderException in org.apache.wiki
Methods in org.apache.wiki that throw ProviderException Modifier and Type Method Description java.lang.StringWikiEngine. getFinalPageName(java.lang.String page)Returns the correct page name, or null, if no such page can be found. -
Uses of ProviderException in org.apache.wiki.api.core
Methods in org.apache.wiki.api.core that throw ProviderException Modifier and Type Method Description java.lang.StringEngine. getFinalPageName(java.lang.String page)Returns the correct page name, or null, if no such page can be found. -
Uses of ProviderException in org.apache.wiki.api.providers
Methods in org.apache.wiki.api.providers that throw ProviderException Modifier and Type Method Description voidAttachmentProvider. deleteAttachment(Attachment att)Removes an entire page from the repository.voidPageProvider. deletePage(java.lang.String pageName)Removes an entire page from the repository.voidAttachmentProvider. deleteVersion(Attachment att)Removes a specific version from the repository.voidPageProvider. deleteVersion(java.lang.String pageName, int version)Removes a specific version from the repository.java.util.Collection<Page>PageProvider. getAllPages()Returns all pages.java.io.InputStreamAttachmentProvider. getAttachmentData(Attachment att)Get attachment data.AttachmentAttachmentProvider. getAttachmentInfo(Page page, java.lang.String name, int version)Returns info about an attachment.intPageProvider. getPageCount()Gets the number of pages.PagePageProvider. getPageInfo(java.lang.String page, int version)Returns info about the page.java.lang.StringPageProvider. getPageText(java.lang.String page, int version)Gets a specific version out of the repository.java.util.List<Page>PageProvider. getVersionHistory(java.lang.String page)Returns version history.java.util.List<Attachment>AttachmentProvider. listAllChanged(java.util.Date timestamp)Lists changed attachments since given date.java.util.List<Attachment>AttachmentProvider. listAttachments(Page page)Lists all attachments attached to a page.voidAttachmentProvider. moveAttachmentsForPage(java.lang.String oldParent, java.lang.String newParent)Move all the attachments for a given page so that they are attached to a new page.voidPageProvider. movePage(java.lang.String from, java.lang.String to)Move a pagevoidAttachmentProvider. putAttachmentData(Attachment att, java.io.InputStream data)Put new attachment data.voidPageProvider. putPageText(Page page, java.lang.String text)Attempts to save the page text for page "page". -
Uses of ProviderException in org.apache.wiki.attachment
Methods in org.apache.wiki.attachment that throw ProviderException Modifier and Type Method Description voidAttachmentManager. deleteAttachment(Attachment att)Deletes all versions of the given attachment.voidDefaultAttachmentManager. deleteAttachment(Attachment att)Deletes all versions of the given attachment.voidAttachmentManager. deleteVersion(Attachment att)Deletes the given attachment version.voidDefaultAttachmentManager. deleteVersion(Attachment att)Deletes the given attachment version.protected booleanAttachmentServlet. executeUpload(Context context, java.io.InputStream data, java.lang.String filename, java.lang.String errorPage, java.lang.String parentPage, java.lang.String changenote, long contentLength)java.util.Collection<Attachment>AttachmentManager. getAllAttachments()Returns a collection of Attachments, containing each and every attachment that is in this Wiki.java.util.Collection<Attachment>DefaultAttachmentManager. getAllAttachments()Returns a collection of Attachments, containing each and every attachment that is in this Wiki.java.io.InputStreamDynamicAttachmentProvider. getAttachmentData(Context context, Attachment att)Returns a stream of data for this attachment.default AttachmentAttachmentManager. getAttachmentInfo(java.lang.String name)Gets info on a particular attachment, latest version.default AttachmentAttachmentManager. getAttachmentInfo(java.lang.String name, int version)Gets info on a particular attachment with the given version.default AttachmentAttachmentManager. getAttachmentInfo(Context context, java.lang.String attachmentname)Figures out the full attachment name from the context and attachment name.AttachmentAttachmentManager. getAttachmentInfo(Context context, java.lang.String attachmentname, int version)Figures out the full attachment name from the context and attachment name.AttachmentDefaultAttachmentManager. getAttachmentInfo(Context context, java.lang.String attachmentname, int version)Figures out the full attachment name from the context and attachment name.default java.io.InputStreamAttachmentManager. getAttachmentStream(Attachment att)Finds a (real) attachment from the repository as anInputStream.java.io.InputStreamAttachmentManager. getAttachmentStream(Context ctx, Attachment att)Returns an attachment stream using the particular WikiContext.java.io.InputStreamDefaultAttachmentManager. getAttachmentStream(Context ctx, Attachment att)Returns an attachment stream using the particular WikiContext.java.util.List<Attachment>AttachmentManager. getVersionHistory(java.lang.String attachmentName)Returns a list of versions of the attachment.java.util.List<Attachment>DefaultAttachmentManager. getVersionHistory(java.lang.String attachmentName)Returns a list of versions of the attachment.java.util.List<Attachment>AttachmentManager. listAttachments(Page wikipage)Returns the list of attachments associated with a given wiki page.java.util.List<Attachment>DefaultAttachmentManager. listAttachments(Page wikipage)Returns the list of attachments associated with a given wiki page.default voidAttachmentManager. storeAttachment(Attachment att, java.io.File source)Stores an attachment that lives in the given file.voidAttachmentManager. storeAttachment(Attachment att, java.io.InputStream in)Stores an attachment directly from a stream.voidDefaultAttachmentManager. storeAttachment(Attachment att, java.io.InputStream in)Stores an attachment directly from a stream. -
Uses of ProviderException in org.apache.wiki.pages
Methods in org.apache.wiki.pages that throw ProviderException Modifier and Type Method Description voidDefaultPageManager. deletePage(java.lang.String pageName)Deletes a page or an attachment completely, including all versions.voidDefaultPageManager. deletePage(Page page)Deletes an entire page, all versions, all traces.voidPageManager. deletePage(java.lang.String pageName)Deletes a page or an attachment completely, including all versions.voidPageManager. deletePage(Page page)Deletes an entire page, all versions, all traces.voidDefaultPageManager. deleteVersion(Page page)Deletes only a specific version of a WikiPage.voidPageManager. deleteVersion(Page page)Deletes only a specific version of a WikiPage.java.util.Collection<Page>DefaultPageManager. getAllPages()Returns all pages in some random order.java.util.Collection<Page>PageManager. getAllPages()Returns all pages in some random order.PageDefaultPageManager. getPageInfo(java.lang.String pageName, int version)Finds a WikiPage object describing a particular page and version.PagePageManager. getPageInfo(java.lang.String pageName, int version)Finds a WikiPage object describing a particular page and version.java.lang.StringDefaultPageManager. getPageText(java.lang.String pageName, int version)Fetches the page text from the repository.java.lang.StringPageManager. getPageText(java.lang.String pageName, int version)Fetches the page text from the repository.booleanDefaultPageManager. pageExists(java.lang.String pageName)Returns true, if the page exists (any version) on the underlying WikiPageProvider.booleanDefaultPageManager. pageExists(java.lang.String pageName, int version)Checks for existence of a specific page and version on the underlying WikiPageProvider.booleanPageManager. pageExists(java.lang.String pageName)Returns true, if the page exists (any version) on the underlying WikiPageProvider.booleanPageManager. pageExists(java.lang.String pageName, int version)Checks for existence of a specific page and version on the underlying WikiPageProvider.default booleanPageManager. pageExists(Page page)Checks for existence of a specific page and version denoted by a WikiPage on the underlying WikiPageProvider.voidDefaultPageManager. putPageText(Page page, java.lang.String content)Puts the page text into the repository.voidPageManager. putPageText(Page page, java.lang.String content)Puts the page text into the repository.booleanDefaultPageManager. wikiPageExists(java.lang.String page, int version)Returns true, if the requested page (or an alias) exists with the requested version.booleanPageManager. wikiPageExists(java.lang.String page, int version)Returns true, if the requested page (or an alias) exists with the requested version.default booleanPageManager. wikiPageExists(Page page)Returns true, if the requested page (or an alias) exists, with the specified version in the WikiPage. -
Uses of ProviderException in org.apache.wiki.plugin
Methods in org.apache.wiki.plugin that throw ProviderException Modifier and Type Method Description java.lang.StringWeblogEntryPlugin. getNewEntryPage(Engine engine, java.lang.String blogName)Returns a new page name for entries. -
Uses of ProviderException in org.apache.wiki.providers
Subclasses of ProviderException in org.apache.wiki.providers Modifier and Type Class Description classNoSuchVersionExceptionIndicates that an non-existing version was specified.classRepositoryModifiedExceptionIf the provider detects that someone has modified the repository externally, it should throw this exception.Methods in org.apache.wiki.providers that throw ProviderException Modifier and Type Method Description voidBasicAttachmentProvider. deleteAttachment(Attachment att)Removes an entire page from the repository.voidCachingAttachmentProvider. deleteAttachment(Attachment att)Removes an entire page from the repository.voidWikiAttachmentAdapterProvider. deleteAttachment(Attachment att)Deprecated.Removes an entire page from the repository.voidWikiAttachmentProvider. deleteAttachment(Attachment att)Deprecated.Removes an entire page from the repository.voidAbstractFileProvider. deletePage(java.lang.String pageName)Removes an entire page from the repository.voidCachingProvider. deletePage(java.lang.String pageName)Removes an entire page from the repository.voidFileSystemProvider. deletePage(java.lang.String pageName)Removes an entire page from the repository.voidVersioningFileProvider. deletePage(java.lang.String page)Removes the relevant page directory under "OLD" -directory as well, but does not remove any extra subdirectories from it.voidWikiPageAdapterProvider. deletePage(java.lang.String pageName)Deprecated.Removes an entire page from the repository.voidWikiPageProvider. deletePage(java.lang.String pageName)Deprecated.Removes an entire page from the repository.voidAbstractFileProvider. deleteVersion(java.lang.String pageName, int version)Removes a specific version from the repository.voidBasicAttachmentProvider. deleteVersion(Attachment att)Removes a specific version from the repository.voidCachingAttachmentProvider. deleteVersion(Attachment att)Removes a specific version from the repository.voidCachingProvider. deleteVersion(java.lang.String pageName, int version)Removes a specific version from the repository.voidVersioningFileProvider. deleteVersion(java.lang.String page, int version)Removes a specific version from the repository.voidWikiAttachmentAdapterProvider. deleteVersion(Attachment att)Deprecated.Removes a specific version from the repository.voidWikiAttachmentProvider. deleteVersion(Attachment att)Deprecated.Removes a specific version from the repository.voidWikiPageAdapterProvider. deleteVersion(java.lang.String pageName, int version)Deprecated.Removes a specific version from the repository.voidWikiPageProvider. deleteVersion(java.lang.String pageName, int version)Deprecated.Removes a specific version from the repository.java.util.Collection<Page>AbstractFileProvider. getAllPages()Returns all pages.java.util.Collection<Page>CachingProvider. getAllPages()Returns all pages.java.util.Collection<Page>VersioningFileProvider. getAllPages()Returns all pages.java.util.Collection<Page>WikiPageAdapterProvider. getAllPages()Deprecated.Returns all pages.java.util.Collection<WikiPage>WikiPageProvider. getAllPages()Deprecated.Returns all pages.java.io.InputStreamBasicAttachmentProvider. getAttachmentData(Attachment att)Get attachment data.java.io.InputStreamCachingAttachmentProvider. getAttachmentData(Attachment att)Get attachment data.java.io.InputStreamWikiAttachmentAdapterProvider. getAttachmentData(Attachment att)Deprecated.Get attachment data.java.io.InputStreamWikiAttachmentProvider. getAttachmentData(Attachment att)Deprecated.Get attachment data.AttachmentBasicAttachmentProvider. getAttachmentInfo(Page page, java.lang.String name, int version)Returns info about an attachment.AttachmentCachingAttachmentProvider. getAttachmentInfo(Page page, java.lang.String name, int version)Returns info about an attachment.AttachmentWikiAttachmentAdapterProvider. getAttachmentInfo(Page page, java.lang.String name, int version)Deprecated.Returns info about an attachment.AttachmentWikiAttachmentProvider. getAttachmentInfo(WikiPage page, java.lang.String name, int version)Deprecated.Returns info about an attachment.intCachingProvider. getPageCount()Gets the number of pages.intWikiPageAdapterProvider. getPageCount()Deprecated.Gets the number of pages.intWikiPageProvider. getPageCount()Deprecated.Gets the number of pages.PageAbstractFileProvider. getPageInfo(java.lang.String page, int version)Always returns the latest version, since FileSystemProvider does not support versioning.PageCachingProvider. getPageInfo(java.lang.String pageName, int version)Returns info about the page.PageFileSystemProvider. getPageInfo(java.lang.String page, int version)Always returns the latest version, since FileSystemProvider does not support versioning.PageVersioningFileProvider. getPageInfo(java.lang.String page, int version)Always returns the latest version, since FileSystemProvider does not support versioning.PageWikiPageAdapterProvider. getPageInfo(java.lang.String page, int version)Deprecated.Returns info about the page.WikiPageWikiPageProvider. getPageInfo(java.lang.String page, int version)Deprecated.Returns info about the page.java.lang.StringAbstractFileProvider. getPageText(java.lang.String page, int version)This implementation just returns the current version, as filesystem does not provide versioning information for now.java.lang.StringCachingProvider. getPageText(java.lang.String pageName, int version)Gets a specific version out of the repository.java.lang.StringVersioningFileProvider. getPageText(java.lang.String page, int version)This implementation just returns the current version, as filesystem does not provide versioning information for now.java.lang.StringWikiPageAdapterProvider. getPageText(java.lang.String page, int version)Deprecated.Gets a specific version out of the repository.java.lang.StringWikiPageProvider. getPageText(java.lang.String page, int version)Deprecated.Gets a specific version out of the repository.java.util.List<Page>AbstractFileProvider. getVersionHistory(java.lang.String page)The FileSystemProvider provides only one version.java.util.List<Page>CachingProvider. getVersionHistory(java.lang.String pageName)Returns version history.java.util.List<Page>VersioningFileProvider. getVersionHistory(java.lang.String page)The FileSystemProvider provides only one version.java.util.List<Page>WikiPageAdapterProvider. getVersionHistory(java.lang.String page)Deprecated.Returns version history.java.util.List<WikiPage>WikiPageProvider. getVersionHistory(java.lang.String page)Deprecated.Returns version history.java.util.List<Attachment>BasicAttachmentProvider. listAllChanged(java.util.Date timestamp)Lists changed attachments since given date.java.util.List<Attachment>CachingAttachmentProvider. listAllChanged(java.util.Date timestamp)Lists changed attachments since given date.java.util.List<Attachment>WikiAttachmentAdapterProvider. listAllChanged(java.util.Date timestamp)Deprecated.Lists changed attachments since given date.java.util.List<Attachment>WikiAttachmentProvider. listAllChanged(java.util.Date timestamp)Deprecated.Lists changed attachments since given date.java.util.List<Attachment>BasicAttachmentProvider. listAttachments(Page page)Lists all attachments attached to a page.java.util.List<Attachment>CachingAttachmentProvider. listAttachments(Page page)Lists all attachments attached to a page.java.util.List<Attachment>WikiAttachmentAdapterProvider. listAttachments(Page page)Deprecated.Lists all attachments attached to a page.java.util.List<Attachment>WikiAttachmentProvider. listAttachments(WikiPage page)Deprecated.Lists all attachments attached to a page.voidBasicAttachmentProvider. moveAttachmentsForPage(java.lang.String oldParent, java.lang.String newParent)Move all the attachments for a given page so that they are attached to a new page.voidCachingAttachmentProvider. moveAttachmentsForPage(java.lang.String oldParent, java.lang.String newParent)Move all the attachments for a given page so that they are attached to a new page.voidWikiAttachmentAdapterProvider. moveAttachmentsForPage(java.lang.String oldParent, java.lang.String newParent)Deprecated.Move all the attachments for a given page so that they are attached to a new page.voidWikiAttachmentProvider. moveAttachmentsForPage(java.lang.String oldParent, java.lang.String newParent)Deprecated.Move all the attachments for a given page so that they are attached to a new page.voidCachingProvider. movePage(java.lang.String from, java.lang.String to)Move a pagevoidFileSystemProvider. movePage(java.lang.String from, java.lang.String to)Move a pagevoidWikiPageAdapterProvider. movePage(java.lang.String from, java.lang.String to)Deprecated.Move a pagevoidWikiPageProvider. movePage(java.lang.String from, java.lang.String to)Deprecated.Move a pagevoidBasicAttachmentProvider. putAttachmentData(Attachment att, java.io.InputStream data)Put new attachment data.voidCachingAttachmentProvider. putAttachmentData(Attachment att, java.io.InputStream data)Put new attachment data.voidWikiAttachmentAdapterProvider. putAttachmentData(Attachment att, java.io.InputStream data)Deprecated.Put new attachment data.voidWikiAttachmentProvider. putAttachmentData(Attachment att, java.io.InputStream data)Deprecated.Put new attachment data.voidAbstractFileProvider. putPageText(Page page, java.lang.String text)Attempts to save the page text for page "page".voidCachingProvider. putPageText(Page page, java.lang.String text)Attempts to save the page text for page "page".voidFileSystemProvider. putPageText(Page page, java.lang.String text)Attempts to save the page text for page "page".voidVersioningFileProvider. putPageText(Page page, java.lang.String text)Attempts to save the page text for page "page".voidWikiPageAdapterProvider. putPageText(Page page, java.lang.String text)Deprecated.Attempts to save the page text for page "page".voidWikiPageProvider. putPageText(WikiPage page, java.lang.String text)Deprecated.Attempts to save the page text for page "page". -
Uses of ProviderException in org.apache.wiki.references
Methods in org.apache.wiki.references that throw ProviderException Modifier and Type Method Description voidDefaultReferenceManager. initialize(java.util.Collection<Page> pages)Initializes the entire reference manager with the initial set of pages from the collection.voidReferenceManager. initialize(java.util.Collection<Page> pages)Initializes the entire reference manager with the initial set of pages from the collection. -
Uses of ProviderException in org.apache.wiki.search
Methods in org.apache.wiki.search that throw ProviderException Modifier and Type Method Description java.util.Collection<SearchResult>LuceneSearchProvider. findPages(java.lang.String query, int flags, Context wikiContext)Searches pages using a particular combination of flags.java.util.Collection<SearchResult>LuceneSearchProvider. findPages(java.lang.String query, Context wikiContext)Search for pages matching a search query.default java.util.Collection<SearchResult>SearchManager. findPages(java.lang.String query, Context wikiContext)Sends a search to the current search provider.java.util.Collection<SearchResult>SearchProvider. findPages(java.lang.String query, Context wikiContext)Search for pages matching a search query. -
Uses of ProviderException in org.apache.wiki.tags
Methods in org.apache.wiki.tags that throw ProviderException Modifier and Type Method Description intCheckLockTag. doWikiStartTag()This method is allowed to do pretty much whatever he wants.intCheckRequestContextTag. doWikiStartTag()This method is allowed to do pretty much whatever he wants.intContentTag. doWikiStartTag()This method is allowed to do pretty much whatever he wants.intIncludeTag. doWikiStartTag()intInsertPageTag. doWikiStartTag()intNoSuchPageTag. doWikiStartTag()intPageExistsTag. doWikiStartTag() -
Uses of ProviderException in org.apache.wiki.ui
Methods in org.apache.wiki.ui that throw ProviderException Modifier and Type Method Description java.lang.StringCommandResolver. getFinalPageName(java.lang.String page)Returns the correct page name, ornull, if no such page can be found.java.lang.StringDefaultCommandResolver. getFinalPageName(java.lang.String page)Returns the correct page name, ornull, if no such page can be found.protected booleanDefaultCommandResolver. simplePageExists(java.lang.String page)Determines whether a "page" exists by examining the list of special pages and querying the page manager.