Package com.logicaldoc.web.service
Class DocumentServiceImpl
- java.lang.Object
-
- javax.servlet.GenericServlet
-
- javax.servlet.http.HttpServlet
-
- com.google.gwt.user.server.rpc.AbstractRemoteServiceServlet
-
- com.google.gwt.user.server.rpc.RemoteServiceServlet
-
- com.logicaldoc.web.service.DocumentServiceImpl
-
- All Implemented Interfaces:
com.google.gwt.user.client.rpc.RemoteService
,com.google.gwt.user.server.rpc.SerializationPolicyProvider
,DocumentService
,Serializable
,javax.servlet.Servlet
,javax.servlet.ServletConfig
public class DocumentServiceImpl extends com.google.gwt.user.server.rpc.RemoteServiceServlet implements DocumentService
The document service for the operations on the documents done through the GUI.- Since:
- 6.0
- Author:
- Marco Meschieri - LogicalDOC
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.logicaldoc.gui.frontend.client.services.DocumentService
DocumentService.Instance
-
-
Constructor Summary
Constructors Constructor Description DocumentServiceImpl()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addBookmarks(long[] ids, int type)
Adds new bookmarksGUIDocument[]
addDocuments(boolean importZip, String charset, boolean immediateIndexing, GUIDocument metadata)
GUIDocument[]
addDocuments(String language, long folderId, boolean importZip, String charset, boolean immediateIndexing, Long templateId)
Adds new documents previously uploadedlong
addNote(long docId, String message)
Adds a new document note on the given documentvoid
archiveDocuments(long[] docIds, String comment)
Archives a set of documentslong
archiveFolder(long folderId, String comment)
Archives the documents in a foldervoid
bulkUpdate(long[] ids, GUIDocument vo, boolean ignoreEmptyFields)
Applies to a selection of documents all the given dataGUIDocument
checkin(GUIDocument document, boolean major)
Checks-in a new document versionGUIDocument
checkinContent(long docId, String content)
Checks-in a new document's text contentvoid
checkout(long docId)
Checks out the documentvoid
cleanUploadedFileFolder()
Cleans the uploaded files folderGUIDocument
convert(long docId, String fileVersion, String format)
Converts a document in a given formatlong
countDocuments(long[] folderIds, int status)
Counts the documents in a given status contained the specified folder's treesGUIDocument
createDocument(GUIDocument document, String content)
Creates a new document with the given text contentString
createDownloadTicket(long docId, String suffix, Integer expireHours, Date expireDate, Integer maxDownloads)
GUIDocument
createWithContent(GUIDocument vo, String content)
Creates a new empty documentvoid
deDuplicate(Long folderId, boolean retainNewest)
Convert duplicates with aliases, just one of the documents is maintainedvoid
delete(long[] ids)
Deletes a selection of documentsvoid
deleteBookmarks(long[] bookmarkIds)
Deletes a set of bookmarksvoid
deleteFromTrash(Long[] ids)
Deletes a selection of documents from trashvoid
deleteLinks(long[] ids)
Deletes a selection of linksvoid
deleteNotes(long[] ids)
Deletes a selection of document notesInteger
deleteRating(long id)
Deletes a votevoid
deleteTicket(long ticketId)
GUIDocument
deleteVersions(long[] ids)
Deletes a selection of versionsvoid
disableTicket(long ticketId)
void
emptyTrash()
Clear the user's trashvoid
enableTicket(long ticketId)
GUIEmail
extractEmail(long docId, String fileVersion)
Extracts the email representation from a .eml or .msg filestatic GUIDocument
fromDocument(Document doc, GUIFolder folder, User sessionUser)
GUIAttribute[]
getAttributes(long templateId)
Retrieves all attributes of the specified templateGUIDocument
getById(long docId)
Retrieves a specific document by its IDString
getContentAsString(long docId)
Retrieves the document's content as a stringstatic GUIDocument
getDocument(Session session, long docId)
GUIDocumentNote[]
getNotes(long docId, String fileVersion, Collection<String> types)
Retrieves the notes of a documentGUIRating
getRating(long docId)
Retrieves the rating of the given documentGUIRating
getUserRating(long docId)
Retrieves the vote of the current user on the specified documentGUIVersion[]
getVersionsById(long id1, long id2)
Retrieves two specific versions by its IDvoid
indexDocuments(Long[] docIds)
Indexes the given set of documentsvoid
linkDocuments(long[] inDocIds, long[] outDocIds)
Links a set of documentsvoid
lock(long[] docIds, String comment)
Locks a set of documentsvoid
makeImmutable(long[] docIds, String comment)
Makes immutable a set of documentsvoid
markHistoryAsRead(String event)
Marks as read the histories related to the current user and the given event.void
markIndexable(long[] docIds, int policy)
Marks a set of documents as indexablevoid
markUnindexable(long[] docIds)
Marks a set of documents as unindexableGUIDocument
promoteVersion(long docId, String version)
If you promote a prior version, what it does is make it the default version again.GUIDocument
replaceAlias(long aliasId)
Replaces an alias with a copy of the original filevoid
replaceFile(long docId, String fileVersion, String comment)
Replaces the file associated to a given versionvoid
restore(Long[] docIds, long folderId)
Restores a given documentGUIDocument
save(GUIDocument document)
Saves the document in the DBGUIDocument
saveEmailAttachment(long docId, String fileVersion, String attachmentFileName)
Extracts an email attachment and saves it in the same folder of the documentvoid
saveNotes(long docId, GUIDocumentNote[] notes, Collection<String> types)
Saves a set of notesint
saveRating(GUIRating rating)
Save a rating vote on a documentString
sendAsEmail(GUIEmail email, String locale)
Sends a document as email(attachment or download ticket)void
setPassword(long docId, String password)
Puts a password protection to the documentvoid
unarchiveDocuments(long[] docIds)
Restores a given set of archived documentsvoid
unlock(long[] docIds)
Unlocks a set of documentsboolean
unprotect(long docId, String password)
Checks if the document can be accessed with the given passwordvoid
unsetPassword(long docId, String currentPassword)
Removes the password protection from the documentvoid
updateBookmark(GUIBookmark bookmark)
Updates a single bookmark's datavoid
updateLink(long id, String type)
Updates the links typevoid
updateNote(long docId, long noteId, String message)
Updates a document note on the given document-
Methods inherited from class com.google.gwt.user.server.rpc.RemoteServiceServlet
getSerializationPolicy, init, processCall, processCall, processPost
-
-
-
-
Method Detail
-
addBookmarks
public void addBookmarks(long[] ids, int type) throws ServerException
Description copied from interface:DocumentService
Adds new bookmarks- Specified by:
addBookmarks
in interfaceDocumentService
- Parameters:
ids
- identfiers of the documents or folders to bookmarktype
- the type of bookmark (0 = document, 1 = folder)- Throws:
ServerException
- an error happened in the server application
-
indexDocuments
public void indexDocuments(Long[] docIds) throws ServerException
Description copied from interface:DocumentService
Indexes the given set of documents- Specified by:
indexDocuments
in interfaceDocumentService
- Parameters:
docIds
- The set of documents to index- Throws:
ServerException
- an error happened in the server application
-
addDocuments
public GUIDocument[] addDocuments(boolean importZip, String charset, boolean immediateIndexing, GUIDocument metadata) throws ServerException
- Specified by:
addDocuments
in interfaceDocumentService
- Throws:
ServerException
-
addDocuments
public GUIDocument[] addDocuments(String language, long folderId, boolean importZip, String charset, boolean immediateIndexing, Long templateId) throws ServerException
Description copied from interface:DocumentService
Adds new documents previously uploaded- Specified by:
addDocuments
in interfaceDocumentService
- Parameters:
language
- The language applied to all documentsfolderId
- The destination folder identifierimportZip
- If .zip files have to be unpacked and the contained documents importedcharset
- Charset to use to process the .zip filesimmediateIndexing
- If the documents must be immediately indexedtemplateId
- The documents template- Returns:
- The list of created documents
- Throws:
ServerException
- an error happened in the server application
-
promoteVersion
public GUIDocument promoteVersion(long docId, String version) throws ServerException
Description copied from interface:DocumentService
If you promote a prior version, what it does is make it the default version again. (regardless of there being many versions)- Specified by:
promoteVersion
in interfaceDocumentService
- Parameters:
docId
- the identifier of the documentversion
- version specification- Returns:
- the document
- Throws:
ServerException
- an error happened in the server application
-
checkin
public GUIDocument checkin(GUIDocument document, boolean major) throws ServerException
Description copied from interface:DocumentService
Checks-in a new document version- Specified by:
checkin
in interfaceDocumentService
- Parameters:
document
- The document to updatemajor
- True if this is a major version- Returns:
- The updated document
- Throws:
ServerException
- an error happened in the server application
-
checkout
public void checkout(long docId) throws ServerException
Description copied from interface:DocumentService
Checks out the document- Specified by:
checkout
in interfaceDocumentService
- Parameters:
docId
- identifier of the document- Throws:
ServerException
- an error happened in the server application
-
delete
public void delete(long[] ids) throws ServerException
Description copied from interface:DocumentService
Deletes a selection of documents- Specified by:
delete
in interfaceDocumentService
- Parameters:
ids
- identifiers of the documents- Throws:
ServerException
- an error happened in the server application
-
deleteBookmarks
public void deleteBookmarks(long[] bookmarkIds) throws ServerException
Description copied from interface:DocumentService
Deletes a set of bookmarks- Specified by:
deleteBookmarks
in interfaceDocumentService
- Parameters:
bookmarkIds
- identifiers of the bookmarks to delete- Throws:
ServerException
- an error happened in the server application
-
deleteLinks
public void deleteLinks(long[] ids) throws ServerException
Description copied from interface:DocumentService
Deletes a selection of links- Specified by:
deleteLinks
in interfaceDocumentService
- Parameters:
ids
- identifiers of the links- Throws:
ServerException
- an error happened in the server application
-
getAttributes
public GUIAttribute[] getAttributes(long templateId) throws ServerException
Description copied from interface:DocumentService
Retrieves all attributes of the specified template- Specified by:
getAttributes
in interfaceDocumentService
- Parameters:
templateId
- identifier of the template- Returns:
- the attributes
- Throws:
ServerException
- an error happened in the server application
-
getById
public GUIDocument getById(long docId) throws ServerException
Description copied from interface:DocumentService
Retrieves a specific document by its ID- Specified by:
getById
in interfaceDocumentService
- Parameters:
docId
- identifier of the document- Returns:
- the document retrieved by the server application
- Throws:
ServerException
- an error happened in the server application
-
getDocument
public static GUIDocument getDocument(Session session, long docId) throws Exception
- Throws:
Exception
-
fromDocument
public static GUIDocument fromDocument(Document doc, GUIFolder folder, User sessionUser)
-
getVersionsById
public GUIVersion[] getVersionsById(long id1, long id2) throws ServerException
Description copied from interface:DocumentService
Retrieves two specific versions by its ID- Specified by:
getVersionsById
in interfaceDocumentService
- Parameters:
id1
- identifier of the first versionid2
- identifier of the second version- Returns:
- the two versions
- Throws:
ServerException
- an error happened in the server application
-
linkDocuments
public void linkDocuments(long[] inDocIds, long[] outDocIds) throws ServerException
Description copied from interface:DocumentService
Links a set of documents- Specified by:
linkDocuments
in interfaceDocumentService
- Parameters:
inDocIds
- identifiers of the documents for the IN directionoutDocIds
- identifiers of the documents for the OUT direction- Throws:
ServerException
- an error happened in the server application
-
lock
public void lock(long[] docIds, String comment) throws ServerException
Description copied from interface:DocumentService
Locks a set of documents- Specified by:
lock
in interfaceDocumentService
- Parameters:
docIds
- identifiers of the documentscomment
- the comment to the lock- Throws:
ServerException
- an error happened in the server application
-
makeImmutable
public void makeImmutable(long[] docIds, String comment) throws ServerException
Description copied from interface:DocumentService
Makes immutable a set of documents- Specified by:
makeImmutable
in interfaceDocumentService
- Parameters:
docIds
- identifiers of the documentscomment
- the commit- Throws:
ServerException
- an error happened in the server application
-
markHistoryAsRead
public void markHistoryAsRead(String event) throws ServerException
Description copied from interface:DocumentService
Marks as read the histories related to the current user and the given event.- Specified by:
markHistoryAsRead
in interfaceDocumentService
- Parameters:
event
- The history event to mark as read- Throws:
ServerException
- an error happened in the server application
-
markIndexable
public void markIndexable(long[] docIds, int policy) throws ServerException
Description copied from interface:DocumentService
Marks a set of documents as indexable- Specified by:
markIndexable
in interfaceDocumentService
- Parameters:
docIds
- identifiers of the documentspolicy
- indexing policy:Constants.INDEX_TO_INDEX
orConstants.INDEX_TO_INDEX_METADATA
- Throws:
ServerException
- an error happened in the server application
-
markUnindexable
public void markUnindexable(long[] docIds) throws ServerException
Description copied from interface:DocumentService
Marks a set of documents as unindexable- Specified by:
markUnindexable
in interfaceDocumentService
- Parameters:
docIds
- identifiers of the documents- Throws:
ServerException
- an error happened in the server application
-
restore
public void restore(Long[] docIds, long folderId) throws ServerException
Description copied from interface:DocumentService
Restores a given document- Specified by:
restore
in interfaceDocumentService
- Parameters:
docIds
- identifiers of the documentsfolderId
- identifier of the folder in which to restore the documents- Throws:
ServerException
- an error happened in the server application
-
save
public GUIDocument save(GUIDocument document) throws ServerException
Description copied from interface:DocumentService
Saves the document in the DB- Specified by:
save
in interfaceDocumentService
- Parameters:
document
- The document to save- Returns:
- The saved document
- Throws:
ServerException
- an error happened in the server application
-
sendAsEmail
public String sendAsEmail(GUIEmail email, String locale) throws ServerException
Description copied from interface:DocumentService
Sends a document as email(attachment or download ticket)- Specified by:
sendAsEmail
in interfaceDocumentService
- Parameters:
email
- the email to sendlocale
- the locale specification- Returns:
- "ok" otherwise an error code
- Throws:
ServerException
- an error happened in the server application
-
unlock
public void unlock(long[] docIds) throws ServerException
Description copied from interface:DocumentService
Unlocks a set of documents- Specified by:
unlock
in interfaceDocumentService
- Parameters:
docIds
- identifiers of the documents- Throws:
ServerException
- an error happened in the server application
-
updateBookmark
public void updateBookmark(GUIBookmark bookmark) throws ServerException
Description copied from interface:DocumentService
Updates a single bookmark's data- Specified by:
updateBookmark
in interfaceDocumentService
- Parameters:
bookmark
- the bookmark to update- Throws:
ServerException
- an error happened in the server application
-
updateLink
public void updateLink(long id, String type) throws ServerException
Description copied from interface:DocumentService
Updates the links type- Specified by:
updateLink
in interfaceDocumentService
- Parameters:
id
- The link identifiertype
- The new type to be set- Throws:
ServerException
- an error happened in the server application
-
cleanUploadedFileFolder
public void cleanUploadedFileFolder() throws ServerException
Description copied from interface:DocumentService
Cleans the uploaded files folder- Specified by:
cleanUploadedFileFolder
in interfaceDocumentService
- Throws:
ServerException
- an error happened in the server application
-
getRating
public GUIRating getRating(long docId) throws ServerException
Description copied from interface:DocumentService
Retrieves the rating of the given document- Specified by:
getRating
in interfaceDocumentService
- Parameters:
docId
- identifier of the document- Returns:
- the rating retrieved by the server application
- Throws:
ServerException
- an error happened in the server application
-
saveRating
public int saveRating(GUIRating rating) throws ServerException
Description copied from interface:DocumentService
Save a rating vote on a document- Specified by:
saveRating
in interfaceDocumentService
- Parameters:
rating
- the document's rating- Returns:
- the new document rating value
- Throws:
ServerException
- an error happened in the server application
-
addNote
public long addNote(long docId, String message) throws ServerException
Description copied from interface:DocumentService
Adds a new document note on the given document- Specified by:
addNote
in interfaceDocumentService
- Parameters:
docId
- identifier of the documentmessage
- the note's text- Returns:
- identifier of the created note
- Throws:
ServerException
- an error happened in the server application
-
getNotes
public GUIDocumentNote[] getNotes(long docId, String fileVersion, Collection<String> types) throws ServerException
Description copied from interface:DocumentService
Retrieves the notes of a document- Specified by:
getNotes
in interfaceDocumentService
- Parameters:
docId
- identifier of the documentfileVersion
- file version specificationtypes
- optional filter for the note type- Returns:
- the notes on the given version
- Throws:
ServerException
- an error happened in the server application
-
saveNotes
public void saveNotes(long docId, GUIDocumentNote[] notes, Collection<String> types) throws ServerException
Description copied from interface:DocumentService
Saves a set of notes- Specified by:
saveNotes
in interfaceDocumentService
- Parameters:
docId
- identifier of the documentnotes
- the notes to savetypes
- optional filter for the note type- Throws:
ServerException
- an error happened in the server application
-
deleteNotes
public void deleteNotes(long[] ids) throws ServerException
Description copied from interface:DocumentService
Deletes a selection of document notes- Specified by:
deleteNotes
in interfaceDocumentService
- Parameters:
ids
- identifiers of the notes- Throws:
ServerException
- an error happened in the server application
-
bulkUpdate
public void bulkUpdate(long[] ids, GUIDocument vo, boolean ignoreEmptyFields) throws ServerException
Description copied from interface:DocumentService
Applies to a selection of documents all the given data- Specified by:
bulkUpdate
in interfaceDocumentService
- Parameters:
ids
- identifiers of the documents to updatevo
- the value object to use as templateignoreEmptyFields
- flag to skip fields empty in thevo
- Throws:
ServerException
- an error happened in the server application
-
updateNote
public void updateNote(long docId, long noteId, String message) throws ServerException
Description copied from interface:DocumentService
Updates a document note on the given document- Specified by:
updateNote
in interfaceDocumentService
- Parameters:
docId
- identifier of the documentnoteId
- identifier of the notemessage
- text of the note- Throws:
ServerException
- an error happened in the server application
-
deleteVersions
public GUIDocument deleteVersions(long[] ids) throws ServerException
Description copied from interface:DocumentService
Deletes a selection of versions- Specified by:
deleteVersions
in interfaceDocumentService
- Parameters:
ids
- identifiers of the versions- Returns:
- the document the deleted versions belongs to
- Throws:
ServerException
- an error happened in the server application
-
createWithContent
public GUIDocument createWithContent(GUIDocument vo, String content) throws ServerException
Description copied from interface:DocumentService
Creates a new empty document- Specified by:
createWithContent
in interfaceDocumentService
- Parameters:
vo
- the value object to use as templatecontent
- the text body of the new document- Returns:
- the created document
- Throws:
ServerException
- an error happened in the server application
-
deleteFromTrash
public void deleteFromTrash(Long[] ids) throws ServerException
Description copied from interface:DocumentService
Deletes a selection of documents from trash- Specified by:
deleteFromTrash
in interfaceDocumentService
- Parameters:
ids
- identifiers of documents- Throws:
ServerException
- an error happened in the server application
-
emptyTrash
public void emptyTrash() throws ServerException
Description copied from interface:DocumentService
Clear the user's trash- Specified by:
emptyTrash
in interfaceDocumentService
- Throws:
ServerException
- an error happened in the server application
-
archiveDocuments
public void archiveDocuments(long[] docIds, String comment) throws ServerException
Description copied from interface:DocumentService
Archives a set of documents- Specified by:
archiveDocuments
in interfaceDocumentService
- Parameters:
docIds
- identifiers of the documentscomment
- the commit- Throws:
ServerException
- an error happened in the server application
-
archiveFolder
public long archiveFolder(long folderId, String comment) throws ServerException
Description copied from interface:DocumentService
Archives the documents in a folder- Specified by:
archiveFolder
in interfaceDocumentService
- Parameters:
folderId
- identifier of the foldercomment
- a comment for the action- Returns:
- number of records added to the archive
- Throws:
ServerException
- an error happened in the server application
-
unarchiveDocuments
public void unarchiveDocuments(long[] docIds) throws ServerException
Description copied from interface:DocumentService
Restores a given set of archived documents- Specified by:
unarchiveDocuments
in interfaceDocumentService
- Parameters:
docIds
- identifiers of the documents- Throws:
ServerException
- an error happened in the server application
-
countDocuments
public long countDocuments(long[] folderIds, int status) throws ServerException
Description copied from interface:DocumentService
Counts the documents in a given status contained the specified folder's trees- Specified by:
countDocuments
in interfaceDocumentService
- Parameters:
folderIds
- identifiers of the foldersstatus
- a filter on the document's status- Returns:
- the count
- Throws:
ServerException
- an error happened in the server application
-
createDownloadTicket
public String createDownloadTicket(long docId, String suffix, Integer expireHours, Date expireDate, Integer maxDownloads) throws ServerException
- Specified by:
createDownloadTicket
in interfaceDocumentService
- Throws:
ServerException
-
setPassword
public void setPassword(long docId, String password) throws ServerException
Description copied from interface:DocumentService
Puts a password protection to the document- Specified by:
setPassword
in interfaceDocumentService
- Parameters:
docId
- the identifier of the document to protectpassword
- the password to assign- Throws:
ServerException
- an error happened in the server application
-
unsetPassword
public void unsetPassword(long docId, String currentPassword) throws ServerException
Description copied from interface:DocumentService
Removes the password protection from the document- Specified by:
unsetPassword
in interfaceDocumentService
- Parameters:
docId
- the identifier of the document to unprotectcurrentPassword
- the password to clear- Throws:
ServerException
- an error happened in the server application
-
unprotect
public boolean unprotect(long docId, String password) throws ServerException
Description copied from interface:DocumentService
Checks if the document can be accessed with the given password- Specified by:
unprotect
in interfaceDocumentService
- Parameters:
docId
- the identifier of the document to unprotectpassword
- the password to clear- Returns:
- is the password is correct
- Throws:
ServerException
- an error happened in the server application
-
getContentAsString
public String getContentAsString(long docId) throws ServerException
Description copied from interface:DocumentService
Retrieves the document's content as a string- Specified by:
getContentAsString
in interfaceDocumentService
- Parameters:
docId
- identifier of the document- Returns:
- the document's extracted content
- Throws:
ServerException
- an error happened in the server application
-
checkinContent
public GUIDocument checkinContent(long docId, String content) throws ServerException
Description copied from interface:DocumentService
Checks-in a new document's text content- Specified by:
checkinContent
in interfaceDocumentService
- Parameters:
docId
- identifier of the documentcontent
- content of the file- Returns:
- the document
- Throws:
ServerException
- an error happened in the server application
-
replaceFile
public void replaceFile(long docId, String fileVersion, String comment) throws ServerException
Description copied from interface:DocumentService
Replaces the file associated to a given version- Specified by:
replaceFile
in interfaceDocumentService
- Parameters:
docId
- the identifier of the documentfileVersion
- the file versioncomment
- the comment- Throws:
ServerException
- an error happened in the server application
-
createDocument
public GUIDocument createDocument(GUIDocument document, String content) throws ServerException
Description copied from interface:DocumentService
Creates a new document with the given text content- Specified by:
createDocument
in interfaceDocumentService
- Parameters:
document
- the document to createcontent
- the contents- Returns:
- the created document
- Throws:
ServerException
- an error happened in the server application
-
getUserRating
public GUIRating getUserRating(long docId) throws ServerException
Description copied from interface:DocumentService
Retrieves the vote of the current user on the specified document- Specified by:
getUserRating
in interfaceDocumentService
- Parameters:
docId
- the identifier of the document- Returns:
- the rating
- Throws:
ServerException
- an error happened in the server application
-
deleteRating
public Integer deleteRating(long id) throws ServerException
Description copied from interface:DocumentService
Deletes a vote- Specified by:
deleteRating
in interfaceDocumentService
- Parameters:
id
- identifier of the rating to delete- Returns:
- the result
- Throws:
ServerException
- an error happened in the server application
-
convert
public GUIDocument convert(long docId, String fileVersion, String format) throws ServerException
Description copied from interface:DocumentService
Converts a document in a given format- Specified by:
convert
in interfaceDocumentService
- Parameters:
docId
- identifier of the document to convertfileVersion
- version of the fileformat
- the format to convert to (e.g.: pdf, txt, ...- Returns:
- the converted document
- Throws:
ServerException
- an error happened in the server application
-
extractEmail
public GUIEmail extractEmail(long docId, String fileVersion) throws ServerException
Description copied from interface:DocumentService
Extracts the email representation from a .eml or .msg file- Specified by:
extractEmail
in interfaceDocumentService
- Parameters:
docId
- the identifier of the mail documentfileVersion
- the File Version- Returns:
- the email representation
- Throws:
ServerException
- an error happened in the server application
-
saveEmailAttachment
public GUIDocument saveEmailAttachment(long docId, String fileVersion, String attachmentFileName) throws ServerException
Description copied from interface:DocumentService
Extracts an email attachment and saves it in the same folder of the document- Specified by:
saveEmailAttachment
in interfaceDocumentService
- Parameters:
docId
- the identifier of the mail documentfileVersion
- the File VersionattachmentFileName
- name of the attachment- Returns:
- the just created document
- Throws:
ServerException
- an error happened in the server application
-
replaceAlias
public GUIDocument replaceAlias(long aliasId) throws ServerException
Description copied from interface:DocumentService
Replaces an alias with a copy of the original file- Specified by:
replaceAlias
in interfaceDocumentService
- Parameters:
aliasId
- ID of the alias to replace- Returns:
- the just created document
- Throws:
ServerException
- an error happened in the server application
-
deDuplicate
public void deDuplicate(Long folderId, boolean retainNewest) throws ServerException
Description copied from interface:DocumentService
Convert duplicates with aliases, just one of the documents is maintained- Specified by:
deDuplicate
in interfaceDocumentService
- Parameters:
folderId
- optional ID of the folder to processretainNewest
- true if the newest has to be retained, otherwise it will be the oldest.- Throws:
ServerException
- an error happened in the server application
-
deleteTicket
public void deleteTicket(long ticketId) throws ServerException
- Specified by:
deleteTicket
in interfaceDocumentService
- Throws:
ServerException
-
enableTicket
public void enableTicket(long ticketId) throws ServerException
- Specified by:
enableTicket
in interfaceDocumentService
- Throws:
ServerException
-
disableTicket
public void disableTicket(long ticketId) throws ServerException
- Specified by:
disableTicket
in interfaceDocumentService
- Throws:
ServerException
-
-