Uses of Class
org.apache.wiki.attachment.Attachment
-
Packages that use Attachment Package Description org.apache.wiki.attachment Attachment management, uploading and downloading.org.apache.wiki.providers Provides storage for JSPWiki. -
-
Uses of Attachment in org.apache.wiki.attachment
Subclasses of Attachment in org.apache.wiki.attachment Modifier and Type Class Description class
DynamicAttachment
A DynamicAttachment is an attachment which does not really exist, but is created dynamically by a JSPWiki component. -
Uses of Attachment in org.apache.wiki.providers
Methods in org.apache.wiki.providers that return Attachment Modifier and Type Method Description Attachment
WikiAttachmentProvider. getAttachmentInfo(WikiPage page, java.lang.String name, int version)
Deprecated.Returns info about an attachment.Methods in org.apache.wiki.providers that return types with arguments of type Attachment Modifier and Type Method Description java.util.Collection<Attachment>
WikiAttachmentProvider. findAttachments(QueryItem[] query)
Deprecated.Finds attachments based on the query.java.util.List<Attachment>
WikiAttachmentProvider. getVersionHistory(Attachment att)
Deprecated.Returns version history.java.util.List<Attachment>
WikiAttachmentProvider. listAllChanged(java.util.Date timestamp)
Deprecated.Lists changed attachments since given date.java.util.List<Attachment>
WikiAttachmentProvider. listAttachments(WikiPage page)
Deprecated.Lists all attachments attached to a page.Methods in org.apache.wiki.providers with parameters of type Attachment Modifier and Type Method Description void
WikiAttachmentProvider. deleteAttachment(Attachment att)
Deprecated.Removes an entire page from the repository.void
WikiAttachmentProvider. deleteVersion(Attachment att)
Deprecated.Removes a specific version from the repository.java.io.InputStream
WikiAttachmentProvider. getAttachmentData(Attachment att)
Deprecated.Get attachment data.java.util.List<Attachment>
WikiAttachmentProvider. getVersionHistory(Attachment att)
Deprecated.Returns version history.void
WikiAttachmentProvider. putAttachmentData(Attachment att, java.io.InputStream data)
Deprecated.Put new attachment data.
-