Uses of Class
com.ecyrd.jspwiki.attachment.Attachment

Packages that use Attachment
com.ecyrd.jspwiki.attachment   
com.ecyrd.jspwiki.dav.items   
com.ecyrd.jspwiki.providers   
 

Uses of Attachment in com.ecyrd.jspwiki.attachment
 

Methods in com.ecyrd.jspwiki.attachment that return Attachment
 Attachment AttachmentManager.getAttachmentInfo(String name)
          Gets info on a particular attachment, latest version.
 Attachment AttachmentManager.getAttachmentInfo(String name, int version)
          Gets info on a particular attachment with the given version.
 Attachment AttachmentManager.getAttachmentInfo(WikiContext context, String attachmentname)
          Figures out the full attachment name from the context and attachment name.
 Attachment AttachmentManager.getAttachmentInfo(WikiContext context, String attachmentname, int version)
          Figures out the full attachment name from the context and attachment name.
 

Methods in com.ecyrd.jspwiki.attachment with parameters of type Attachment
 void AttachmentManager.deleteAttachment(Attachment att)
          Deletes all versions of the given attachment.
 void AttachmentManager.deleteVersion(Attachment att)
          Deletes the given attachment version.
 InputStream AttachmentManager.getAttachmentStream(Attachment att)
          Finds an attachment from the repository as a stream.
 void AttachmentManager.storeAttachment(Attachment att, File source)
          Stores an attachment that lives in the given file.
 void AttachmentManager.storeAttachment(Attachment att, InputStream in)
          Stores an attachment directly from a stream.
 

Uses of Attachment in com.ecyrd.jspwiki.dav.items
 

Constructors in com.ecyrd.jspwiki.dav.items with parameters of type Attachment
AttachmentItem(AttachmentDavProvider provider, DavPath path, Attachment att)
          Constructs a new DAV attachment.
 

Uses of Attachment in com.ecyrd.jspwiki.providers
 

Methods in com.ecyrd.jspwiki.providers that return Attachment
 Attachment WikiAttachmentProvider.getAttachmentInfo(WikiPage page, String name, int version)
          Returns info about an attachment.
 Attachment CachingAttachmentProvider.getAttachmentInfo(WikiPage page, String name, int version)
           
 Attachment BasicAttachmentProvider.getAttachmentInfo(WikiPage page, String name, int version)
           
 

Methods in com.ecyrd.jspwiki.providers with parameters of type Attachment
 void WikiAttachmentProvider.deleteAttachment(Attachment att)
          Removes an entire page from the repository.
 void CachingAttachmentProvider.deleteAttachment(Attachment att)
           
 void BasicAttachmentProvider.deleteAttachment(Attachment att)
           
 void WikiAttachmentProvider.deleteVersion(Attachment att)
          Removes a specific version from the repository.
 void CachingAttachmentProvider.deleteVersion(Attachment att)
           
 void BasicAttachmentProvider.deleteVersion(Attachment att)
           
 InputStream WikiAttachmentProvider.getAttachmentData(Attachment att)
          Get attachment data.
 InputStream CachingAttachmentProvider.getAttachmentData(Attachment att)
           
 InputStream BasicAttachmentProvider.getAttachmentData(Attachment att)
           
 List WikiAttachmentProvider.getVersionHistory(Attachment att)
          Returns version history.
 List CachingAttachmentProvider.getVersionHistory(Attachment att)
          Returns version history.
 List BasicAttachmentProvider.getVersionHistory(Attachment att)
           
 void WikiAttachmentProvider.putAttachmentData(Attachment att, InputStream data)
          Put new attachment data.
 void CachingAttachmentProvider.putAttachmentData(Attachment att, InputStream data)
           
 void BasicAttachmentProvider.putAttachmentData(Attachment att, InputStream data)