Uses of Class
com.logicaldoc.webservice.WebserviceException
-
-
Uses of WebserviceException in com.logicaldoc.webservice.rest
Methods in com.logicaldoc.webservice.rest that throw WebserviceException Modifier and Type Method Description WSNoteDocumentService. addNote(long docId, String note)Adds a new note for the given documentvoidDocumentService. checkout(long docId)Executed the checkoutWSDocumentDocumentService. copy(long docId, long folderId)Copies a document into another foldervoidFolderService. copy(long folderId, long targetId, int foldersOnly, String securityOption)Copies an existing folder with the given identifier.WSFolderFolderService. create(WSFolder folder)WSDocumentDocumentService. createAlias(long docId, long folderId, String type)Creates a new document alias for the given document inside a specified folderWSFolderFolderService. createAlias(long parentId, long foldRef)Creates a new folder aliasStringDocumentService. createDownloadTicket(long docId, String suffix, Integer expireHours, String expireDate, Integer maxDownloads)Creates a new download ticketlongFolderService. createFolder(long parentId, String name)WSFolderFolderService. createPath(long parentId, String path)voidDocumentService. createPdf(long docId, String fileVersion)Creates the PDF conversion of the given document; if the PDF conversion was already created, nothing will happenWSFolderFolderService. createSimple(String folderPath)WSFolderFolderService. createSimpleForm(String folderPath)WSFolderFolderService. createSimpleJSON(String jsonstr)voidDocumentService. createThumbnail(long docId, String fileVersion, String type)Creates the thumbail of the given document; if the thumbnail was already created, nothing will happenvoidDocumentService. delete(long docId)Deletes a documentvoidFolderService. delete(long folderId)voidDocumentService. deleteLink(long id)Removes an existing linkvoidDocumentService. deleteNote(long noteId)Deletes a new note by note identifierStringDocumentService. deleteVersion(long docId, String version)Deletes a version by document identifier and version ID.WSFolderFolderService. findByPath(String path)Finds the folder at the specified pathWSDocument[]DocumentService. getAliases(long docId)Gets the aliases of the given documentjavax.activation.DataHandlerDocumentService. getContent(long docId)Retrieves the file content of a document.WSFolderFolderService. getDefaultWorkspace()Gets the Default workspaceWSDocumentDocumentService. getDocument(long docId)Retrieves a document from the databaseWSDocumentDocumentService. getDocumentByCustomId(String customId)Gets document metadata of an existing document with the given custom identifierWSDocument[]DocumentService. getDocuments(Long[] docIds)Gets document metadata of a collection of existing documents with the given identifiersStringDocumentService. getExtractedText(long docId)Gets the document's text stored in the full-text indexWSFolderFolderService. getFolder(long folderId)WSRight[]FolderService. getGrantedGroups(long folderId)Retrieves the list of granted groups for the given folderWSRight[]FolderService. getGrantedUsers(long folderId)Retrieves the list of granted users for the given folder.WSLink[]DocumentService. getLinks(long docId)Gets all the links of a specific documentWSNote[]DocumentService. getNotes(long docId)Gets the notes for the given documentWSFolder[]FolderService. getPath(long folderId)StringFolderService. getPathString(long folderId)WSRating[]DocumentService. getRatings(long docId)Gets all the ratings of the given documentWSDocument[]DocumentService. getRecentDocuments(Integer maxHits)Lists of last modified documents of the current sessionjavax.activation.DataHandlerDocumentService. getResource(long docId, String fileVersion, String suffix)Gets the content of a resource associated to the given document.WSFolderFolderService. getRootFolder()Gets the root folderjavax.activation.DataHandlerDocumentService. getThumbnail(String type, String docPath, List<javax.ws.rs.core.PathSegment> docPathList)Retrieves the thumbnail imagejavax.activation.DataHandlerDocumentService. getVersionContent(long docId, String version)Retrieves the file content of a version.WSDocument[]DocumentService. getVersions(long docId)Gets the version history of an existing document with the given identifiervoidFolderService. grantGroup(long folderId, long groupId, int permissions, boolean recursive)Grants group permission to the foldervoidFolderService. grantUser(long folderId, long userId, int permissions, boolean recursive)Grants user permission to the folder.booleanFolderService. isGranted(long folderId, int permission)Tests if the current user has a specific permission on a folderbooleanDocumentService. isReadable(long docId)Tests if a document is readablebooleanFolderService. isReadable(long folderId)Tests if a folder is readable.booleanFolderService. isWritable(long folderId)Tests if a folder is writableWSLinkDocumentService. link(long doc1, long doc2, String type)Creates a new link between two documents.WSDocument[]DocumentService. list(long folderId)Lists the documents in a folderWSFolder[]FolderService. listChildren(long folderId)WSDocument[]DocumentService. listDocuments(long folderId, String fileName)Lists the documents in a folderWSFolder[]FolderService. listWorkspaces()Retrieves the list of all workspaces.voidDocumentService. lock(long docId)Locks an existing document with the given identifier.voidDocumentService. move(long docId, long folderId)Moves an existing document with the given identifiervoidFolderService. move(long folderId, long parentId)Moves an existing folder with the given identifier.voidDocumentService. promoteVersion(long docId, String version)Promotes an old version to the current default one.WSRatingDocumentService. rateDocument(long docId, int vote)Puts a new rating on the given documentvoidDocumentService. reindex(long docId, String content)Re-indexes(or indexes from scratch) a documentvoidDocumentService. rename(long docId, String name)Renames the title of an existing document with the given identifier.voidFolderService. rename(long folderId, String name)Renames an existing folder.voidDocumentService. restore(long docId, long folderId)Restores a deleted documentWSNoteDocumentService. saveNote(long docId, WSNote note)Adds a new note for the given documentvoidDocumentService. sendEmail(Long[] docIds, String recipients, String subject, String message)Sends a set of documents as mail attachmentsvoidDocumentService. setPassword(long docId, String password)Puts a password protection to the documentvoidDocumentService. unlock(long docId)Unlocks an existing document with the given identifier.voidDocumentService. unsetPassword(long docId, String currentPassword)Removes the password protection from the documentvoidDocumentService. update(WSDocument document)Updates an existing document with the value object containing the document's metadata.voidFolderService. update(WSFolder folder)Updates an existing folder.voidDocumentService. uploadResource(Integer docId, String fileVersion, String suffix, org.apache.cxf.jaxrs.ext.multipart.Attachment contentDetail)Uploads a new resource of the document Uploads a new resource attached to the given document. -
Uses of WebserviceException in com.logicaldoc.webservice.rest.endpoint
Methods in com.logicaldoc.webservice.rest.endpoint that throw WebserviceException Modifier and Type Method Description WSNoteRestDocumentService. addNote(long docId, String note)voidRestDocumentService. checkout(long docId)WSDocumentRestDocumentService. copy(long docId, long folderId)voidRestFolderService. copy(long folderId, long targetId, int foldersOnly, String securityOption)WSFolderRestFolderService. create(WSFolder folder)WSDocumentRestDocumentService. createAlias(long docId, long folderId, String type)WSFolderRestFolderService. createAlias(long parentId, long foldRef)StringRestDocumentService. createDownloadTicket(long docId, String suffix, Integer expireHours, String expireDate, Integer maxDownloads)longRestFolderService. createFolder(long parentId, String name)WSFolderRestFolderService. createPath(long parentId, String path)voidRestDocumentService. createPdf(long docId, String fileVersion)WSFolderRestFolderService. createSimple(String folderPath)WSFolderRestFolderService. createSimpleForm(String folderPath)WSFolderRestFolderService. createSimpleJSON(String jsonstr)voidRestDocumentService. createThumbnail(long docId, String fileVersion, String type)voidRestDocumentService. delete(long docId)voidRestFolderService. delete(long folderId)voidRestDocumentService. deleteLink(long id)voidRestDocumentService. deleteNote(long noteId)StringRestDocumentService. deleteVersion(long docId, String version)WSFolderRestFolderService. findByPath(String path)WSDocument[]RestDocumentService. getAliases(long docId)javax.activation.DataHandlerRestDocumentService. getContent(long docId)WSFolderRestFolderService. getDefaultWorkspace()WSDocumentRestDocumentService. getDocument(long docId)WSDocumentRestDocumentService. getDocumentByCustomId(String customId)WSDocument[]RestDocumentService. getDocuments(Long[] docIds)StringRestDocumentService. getExtractedText(long docId)WSFolderRestFolderService. getFolder(long folderId)WSRight[]RestFolderService. getGrantedGroups(long folderId)WSRight[]RestFolderService. getGrantedUsers(long folderId)WSLink[]RestDocumentService. getLinks(long docId)WSNote[]RestDocumentService. getNotes(long docId)WSFolder[]RestFolderService. getPath(long folderId)StringRestFolderService. getPathString(long folderId)WSRating[]RestDocumentService. getRatings(long docId)WSDocument[]RestDocumentService. getRecentDocuments(Integer maxHits)javax.activation.DataHandlerRestDocumentService. getResource(long docId, String fileVersion, String suffix)WSFolderRestFolderService. getRootFolder()javax.activation.DataHandlerRestDocumentService. getThumbnail(String type, String docPath, List<javax.ws.rs.core.PathSegment> docPathList)javax.activation.DataHandlerRestDocumentService. getVersionContent(long docId, String version)WSDocument[]RestDocumentService. getVersions(long docId)voidRestFolderService. grantGroup(long folderId, long groupId, int permissions, boolean recursive)voidRestFolderService. grantUser(long folderId, long userId, int permissions, boolean recursive)booleanRestFolderService. isGranted(long folderId, int permission)booleanRestDocumentService. isReadable(long docId)booleanRestFolderService. isReadable(long folderId)booleanRestFolderService. isWritable(long folderId)WSLinkRestDocumentService. link(long doc1, long doc2, String type)WSDocument[]RestDocumentService. list(long folderId)WSFolder[]RestFolderService. listChildren(long folderId)WSDocument[]RestDocumentService. listDocuments(long folderId, String fileName)WSFolder[]RestFolderService. listWorkspaces()voidRestDocumentService. lock(long docId)voidRestDocumentService. move(long docId, long folderId)voidRestFolderService. move(long folderId, long parentId)voidRestDocumentService. promoteVersion(long docId, String version)WSRatingRestDocumentService. rateDocument(long docId, int vote)voidRestDocumentService. reindex(long docId, String content)voidRestDocumentService. rename(long docId, String name)voidRestFolderService. rename(long folderId, String name)voidRestDocumentService. restore(long docId, long folderId)WSNoteRestDocumentService. saveNote(long docId, WSNote note)voidRestDocumentService. sendEmail(Long[] docIds, String recipients, String subject, String message)voidRestDocumentService. setPassword(long docId, String password)voidRestDocumentService. unlock(long docId)voidRestDocumentService. unsetPassword(long docId, String currentPassword)voidRestDocumentService. update(WSDocument document)voidRestFolderService. update(WSFolder folder)voidRestDocumentService. uploadResource(Integer docId, String fileVersion, String suffix, org.apache.cxf.jaxrs.ext.multipart.Attachment contentDetail) -
Uses of WebserviceException in com.logicaldoc.webservice.soap
Methods in com.logicaldoc.webservice.soap that throw WebserviceException Modifier and Type Method Description WSNoteDocumentService. addNote(String sid, long docId, String note)Adds a new note for the given documentWSBookmarkBookmarkService. bookmarkDocument(String sid, long docId)WSBookmarkBookmarkService. bookmarkFolder(String sid, long folderId)voidDocumentService. checkin(String sid, long docId, String comment, String filename, boolean release, javax.activation.DataHandler content)Checks in an existing document with the given identifier to create a new version.voidDocumentService. checkinDocument(String sid, long docId, String comment, String filename, boolean release, WSDocument docVO, javax.activation.DataHandler content)Checks in an existing document with the given identifier to create a new version.voidDocumentService. checkout(String sid, long docId)Checks out an existing document with the given identifier.WSDocumentDocumentService. copy(String sid, long docId, long folderId)Copies a document into another folder.voidFolderService. copy(String sid, long folderId, long targetId, int foldersOnly, String securityOption)Copies an existing folder with the given identifier.WSDocumentDocumentService. create(String sid, WSDocument document, javax.activation.DataHandler content)Create a new document.WSFolderFolderService. create(String sid, WSFolder folder)Creates a new folder.WSDocumentDocumentService. createAlias(String sid, long docId, long folderId, String type)Creates a new document alias for the given document inside a specified folderWSFolderFolderService. createAlias(String sid, long parentId, long foldRef)Creates a new folder aliasStringDocumentService. createDownloadTicket(String sid, long docId, String suffix, Integer expireHours, String expireDate, Integer maxDownloads)Creates a new download ticketlongFolderService. createFolder(String sid, long parentId, String name)Create a new folder.WSFolderFolderService. createPath(String sid, long parentId, String path)Creates the folder for the specified path.voidDocumentService. createPdf(String sid, long docId, String fileVersion)Creates the PDF conversion of the given document.voidDocumentService. createThumbnail(String sid, long docId, String fileVersion, String type)Creates the thumbnail of the given document.voidDocumentService. delete(String sid, long docId)Deletes an existing document with the given identifier.voidFolderService. delete(String sid, long folderId)Deletes an existing folder.voidDocumentMetadataService. deleteAttributeSet(String sid, long setId)Deletes an existing attribute set with the given identifier.voidBookmarkService. deleteBookmark(String sid, long bookmarkId)voidDocumentService. deleteLink(String sid, long id)Removes an existing linkvoidDocumentService. deleteNote(String sid, long noteId)Adds a new note for the given documentvoidDocumentMetadataService. deleteTemplate(String sid, long templateId)Deletes an existing template with the given identifierStringDocumentService. deleteVersion(String sid, long docId, String version)Deletes a version of a document with the given identifiers.WSFolderFolderService. findByPath(String sid, String path)Finds the folder at the specified pathWSDocument[]DocumentService. getAliases(String sid, long docId)Gets the aliases of the given documentString[]DocumentMetadataService. getAttributeOptions(String sid, long setId, String attribute)Retrieves the options for the given attributeWSAttributeOption[]DocumentMetadataService. getAttributeOptionsByCategory(String sid, long setId, String attribute, String category)Retrieves the options for the given attribute inside a given categoryWSAttributeSetDocumentMetadataService. getAttributeSet(String sid, String name)Gets attribute set's metadataWSAttributeSetDocumentMetadataService. getAttributeSetById(String sid, long setId)Gets attribute set's metadataWSBookmark[]BookmarkService. getBookmarks(String sid)Retrieves all the bookmarks of the current userjavax.activation.DataHandlerDocumentService. getContent(String sid, long docId)Gets the content of an existing document with the given identifierWSFolderFolderService. getDefaultWorkspace(String sid)Gets the Default workspaceWSDocumentDocumentService. getDocument(String sid, long docId)Gets the metadata of an existing document with the given identifierWSDocumentDocumentService. getDocumentByCustomId(String sid, String customId)Gets document metadata of an existing document with the given custom identifierWSDocument[]DocumentService. getDocuments(String sid, Long[] docIds)Gets document metadata of a collection of existing documents with the given identifiersStringDocumentService. getExtractedText(String sid, long docId)Gets the document's text stored in the full-text indexWSFolderFolderService. getFolder(String sid, long folderId)Gets an existing folderWSRight[]DocumentMetadataService. getGrantedGroups(String sid, long templateId)Retrieves the list of granted groups for the given templateWSRight[]FolderService. getGrantedGroups(String sid, long folderId)Retrieves the list of granted groups for the given folderWSRight[]DocumentMetadataService. getGrantedUsers(String sid, long templateId)Retrieves the list of granted users for the given template.WSRight[]FolderService. getGrantedUsers(String sid, long folderId)Retrieves the list of granted users for the given folder.WSLink[]DocumentService. getLinks(String sid, long docId)Gets all the links of a specific documentWSNote[]DocumentService. getNotes(String sid, long docId)Gets the notes for the given documentWSFolder[]FolderService. getPath(String sid, long folderId)Computes the path from the root to the target folder.WSRating[]DocumentService. getRatings(String sid, long docId)Gets all the ratings of the given documentWSDocument[]DocumentService. getRecentDocuments(String sid, Integer maxHits)Lists of last modified documents of the current session.javax.activation.DataHandlerDocumentService. getResource(String sid, long docId, String fileVersion, String suffix)Gets the content of a resource associated to the given document.WSFolderFolderService. getRootFolder(String sid)Gets root metadataWSTemplateDocumentMetadataService. getTemplate(String sid, String name)Gets template's metadataWSTemplateDocumentMetadataService. getTemplateById(String sid, long templateId)Gets template's metadataWSDocumentDocumentService. getVersion(String sid, long docId, String version)Gets a specific versionjavax.activation.DataHandlerDocumentService. getVersionContent(String sid, long docId, String version)Gets the content of a specific version of a documentWSDocument[]DocumentService. getVersions(String sid, long docId)Gets the version history of an existing document with the given identifiervoidFolderService. grantGroup(String sid, long folderId, long groupId, int permissions, boolean recursive)Grants group permission to the foldervoidDocumentMetadataService. grantGroupToTemplate(String sid, long templateId, long groupId, int permissions)Grants group permission to the template.voidFolderService. grantUser(String sid, long folderId, long userId, int permissions, boolean recursive)Grants user permission to the folder.voidDocumentMetadataService. grantUserToTemplate(String sid, long templateId, long userId, int permissions)Grants user permission to the template.booleanFolderService. isGranted(String sid, long folderId, int permission)Tests if the current user has a specific permission on a folderbooleanDocumentService. isReadable(String sid, long docId)Tests if a document is readablebooleanFolderService. isReadable(String sid, long folderId)Tests if a folder is readable.booleanDocumentMetadataService. isTemplateReadable(String sid, long templateId)Tests if a template is readable.booleanDocumentMetadataService. isTemplateWritable(String sid, long templateId)Tests if a template is writablebooleanFolderService. isWritable(String sid, long folderId)Tests if a folder is writableWSLinkDocumentService. link(String sid, long doc1, long doc2, String type)Creates a new link between two documents.WSAttributeSet[]DocumentMetadataService. listAttributeSets(String sid)Gets metadata of all existing attribute sets.WSFolder[]FolderService. listChildren(String sid, long folderId)Lists all direct folders of a parent folder.
Attention: readable only sub-folders are returned.WSDocument[]DocumentService. listDocuments(String sid, long folderId, String fileName)Gets a document in a specific folderWSTemplate[]DocumentMetadataService. listTemplates(String sid)Gets metadata of all existing templates.WSFolder[]FolderService. listWorkspaces(String sid)Retrieves the list of all workspaces.voidDocumentService. lock(String sid, long docId)Locks an existing document with the given identifier.voidFolderService. merge(String sid, long sourceId, long targetId)Merges the contents of folder into a targetvoidDocumentService. move(String sid, long docId, long folderId)Moves an existing document with the given identifier.voidFolderService. move(String sid, long folderId, long parentId)Moves an existing folder with the given identifier.voidDocumentService. promoteVersion(String sid, long docId, String version)Promotes an old version to the current default one.WSRatingDocumentService. rateDocument(String sid, long docId, int vote)Puts a new rating on the given documentvoidDocumentService. reindex(String sid, long docId, String content)Re-indexes(or indexes from scratch) a documentvoidDocumentService. rename(String sid, long docId, String name)Renames the title of an existing document with the given identifier.voidFolderService. rename(String sid, long folderId, String name)Renames an existing folder.voidDocumentService. replaceFile(String sid, long docId, String fileVersion, String comment, javax.activation.DataHandler content)Replaces the file associated to a given version.voidDocumentService. restore(String sid, long docId, long folderId)Restores a deleted documentWSBookmarkBookmarkService. saveBookmark(String sid, WSBookmark bookmark)WSNoteDocumentService. saveNote(String sid, long docId, WSNote note)Adds a new note for the given documentvoidDocumentService. sendEmail(String sid, Long[] docIds, String recipients, String subject, String message)Sends a set of documents as mail attachmentsvoidDocumentMetadataService. setAttributeOptions(String sid, long setId, String attribute, WSAttributeOption[] options)Saves the options for the given attributevoidDocumentService. setPassword(String sid, long docId, String password)Puts a password protection to the documentlongDocumentMetadataService. storeAttributeSet(String sid, WSAttributeSet attributeSet)Create/Update an attribute set.longDocumentMetadataService. storeTemplate(String sid, WSTemplate template)Create/Update a template.voidBookmarkService. unbookmarkDocument(String sid, long docId)voidBookmarkService. unbookmarkFolder(String sid, long folderId)voidDocumentService. unlock(String sid, long docId)Unlocks an existing document with the given identifier.voidDocumentService. unsetPassword(String sid, long docId, String currentPassword)Removes the password protection from the documentvoidDocumentService. update(String sid, WSDocument document)Updates an existing document with the value object containing the document's metadatavoidFolderService. update(String sid, WSFolder folder)Updates an existing folder.longDocumentService. upload(String sid, Long docId, Long folderId, boolean release, String filename, String language, javax.activation.DataHandler content)Creates a new document or updates an existing one.voidDocumentService. uploadResource(String sid, long docId, String fileVersion, String suffix, javax.activation.DataHandler content)Uploads a new resource attached to the given document. -
Uses of WebserviceException in com.logicaldoc.webservice.soap.client
Methods in com.logicaldoc.webservice.soap.client that throw WebserviceException Modifier and Type Method Description WSNoteSoapDocumentClient. addNote(String sid, long docId, String note)WSBookmarkSoapBookmarkClient. bookmarkDocument(String sid, long docId)WSBookmarkSoapBookmarkClient. bookmarkFolder(String sid, long folderId)voidSoapDocumentClient. checkin(String sid, long docId, String comment, String filename, boolean release, File content)voidSoapDocumentClient. checkin(String sid, long docId, String comment, String filename, boolean release, javax.activation.DataHandler content)voidSoapDocumentClient. checkinDocument(String sid, long docId, String comment, String filename, boolean release, WSDocument docVO, File content)voidSoapDocumentClient. checkinDocument(String sid, long docId, String comment, String filename, boolean release, WSDocument docVO, javax.activation.DataHandler content)voidSoapDocumentClient. checkout(String sid, long docId)WSDocumentSoapDocumentClient. copy(String sid, long docId, long folderId)voidSoapFolderClient. copy(String sid, long folderId, long parentId, int foldersOnly, String securityOption)WSDocumentSoapDocumentClient. create(String sid, WSDocument document, File content)WSDocumentSoapDocumentClient. create(String sid, WSDocument document, javax.activation.DataHandler content)WSFolderSoapFolderClient. create(String sid, WSFolder folder)WSDocumentSoapDocumentClient. createAlias(String sid, long docId, long folderId, String type)WSFolderSoapFolderClient. createAlias(String sid, long parentId, long foldRef)StringSoapDocumentClient. createDownloadTicket(String sid, long docId, String suffix, Integer expireHours, String expireDate, Integer maxDownloads)longSoapFolderClient. createFolder(String sid, long parentId, String name)WSFolderSoapFolderClient. createPath(String sid, long parentId, String path)voidSoapDocumentClient. createPdf(String sid, long docId, String fileVersion)voidSoapDocumentClient. createThumbnail(String sid, long docId, String fileVersion, String type)voidSoapDocumentClient. delete(String sid, long docId)voidSoapFolderClient. delete(String sid, long folderId)voidSoapDocumentMetadataClient. deleteAttributeSet(String sid, long setId)voidSoapBookmarkClient. deleteBookmark(String sid, long bookmarkId)voidSoapDocumentClient. deleteLink(String sid, long id)voidSoapDocumentClient. deleteNote(String sid, long noteId)voidSoapDocumentMetadataClient. deleteTemplate(String sid, long templateId)StringSoapDocumentClient. deleteVersion(String sid, long docId, String version)voidSoapDocumentClient. downloadContent(String sid, long docId, File out)voidSoapDocumentClient. downloadResourceContent(String sid, long docId, String fileVersion, String suffix, File out)voidSoapDocumentClient. downloadVersionContent(String sid, long docId, String version, File out)WSFolderSoapFolderClient. findByPath(String sid, String path)WSDocument[]SoapDocumentClient. getAliases(String sid, long docId)String[]SoapDocumentMetadataClient. getAttributeOptions(String sid, long setId, String attribute)WSAttributeOption[]SoapDocumentMetadataClient. getAttributeOptionsByCategory(String sid, long setId, String attribute, String category)WSAttributeSetSoapDocumentMetadataClient. getAttributeSet(String sid, String name)WSAttributeSetSoapDocumentMetadataClient. getAttributeSetById(String sid, long setId)WSBookmark[]SoapBookmarkClient. getBookmarks(String sid)javax.activation.DataHandlerSoapDocumentClient. getContent(String sid, long docId)WSFolderSoapFolderClient. getDefaultWorkspace(String sid)WSDocumentSoapDocumentClient. getDocument(String sid, long docId)WSDocumentSoapDocumentClient. getDocumentByCustomId(String sid, String customId)WSDocument[]SoapDocumentClient. getDocuments(String sid, Long[] docIds)StringSoapDocumentClient. getExtractedText(String sid, long docId)WSFolderSoapFolderClient. getFolder(String sid, long folderId)WSRight[]SoapDocumentMetadataClient. getGrantedGroups(String sid, long groupId)WSRight[]SoapFolderClient. getGrantedGroups(String sid, long folderId)WSRight[]SoapDocumentMetadataClient. getGrantedUsers(String sid, long groupId)WSRight[]SoapFolderClient. getGrantedUsers(String sid, long folderId)WSLink[]SoapDocumentClient. getLinks(String sid, long docId)WSNote[]SoapDocumentClient. getNotes(String sid, long docId)WSFolder[]SoapFolderClient. getPath(String sid, long folderId)WSRating[]SoapDocumentClient. getRatings(String sid, long docId)WSDocument[]SoapDocumentClient. getRecentDocuments(String sid, Integer max)javax.activation.DataHandlerSoapDocumentClient. getResource(String sid, long docId, String fileVersion, String suffix)WSFolderSoapFolderClient. getRootFolder(String sid)WSTemplateSoapDocumentMetadataClient. getTemplate(String sid, String name)WSTemplateSoapDocumentMetadataClient. getTemplateById(String sid, long templateId)WSDocumentSoapDocumentClient. getVersion(String sid, long docId, String version)javax.activation.DataHandlerSoapDocumentClient. getVersionContent(String sid, long docId, String version)WSDocument[]SoapDocumentClient. getVersions(String sid, long docId)voidSoapFolderClient. grantGroup(String sid, long folderId, long groupId, int permissions, boolean recursive)voidSoapDocumentMetadataClient. grantGroupToTemplate(String sid, long templateId, long groupId, int permissions)voidSoapFolderClient. grantUser(String sid, long folderId, long userId, int permissions, boolean recursive)voidSoapDocumentMetadataClient. grantUserToTemplate(String sid, long templateId, long userId, int permissions)booleanSoapFolderClient. isGranted(String sid, long folderId, int permission)booleanSoapDocumentClient. isReadable(String sid, long docId)booleanSoapFolderClient. isReadable(String sid, long folderId)booleanSoapDocumentMetadataClient. isTemplateReadable(String sid, long templateId)booleanSoapDocumentMetadataClient. isTemplateWritable(String sid, long templateId)booleanSoapFolderClient. isWritable(String sid, long folderId)WSLinkSoapDocumentClient. link(String sid, long doc1, long doc2, String type)WSAttributeSet[]SoapDocumentMetadataClient. listAttributeSets(String sid)WSFolder[]SoapFolderClient. listChildren(String sid, long folderId)WSDocument[]SoapDocumentClient. listDocuments(String sid, long folderId, String fileName)WSTemplate[]SoapDocumentMetadataClient. listTemplates(String sid)WSFolder[]SoapFolderClient. listWorkspaces(String sid)voidSoapDocumentClient. lock(String sid, long docId)voidSoapFolderClient. merge(String sid, long sourceId, long targetId)voidSoapDocumentClient. move(String sid, long docId, long folderId)voidSoapFolderClient. move(String sid, long folderId, long parentId)voidSoapDocumentClient. promoteVersion(String sid, long docId, String version)WSRatingSoapDocumentClient. rateDocument(String sid, long docId, int vote)voidSoapDocumentClient. reindex(String sid, long docId, String content)voidSoapDocumentClient. rename(String sid, long docId, String name)voidSoapFolderClient. rename(String sid, long folderId, String name)voidSoapDocumentClient. replaceFile(String sid, long docId, String fileVersion, String comment, javax.activation.DataHandler content)voidSoapDocumentClient. restore(String sid, long docId, long folderId)WSBookmarkSoapBookmarkClient. saveBookmark(String sid, WSBookmark bookmark)WSNoteSoapDocumentClient. saveNote(String sid, long docId, WSNote note)voidSoapDocumentClient. sendEmail(String sid, Long[] docIds, String recipients, String subject, String message)voidSoapDocumentMetadataClient. setAttributeOptions(String sid, long setId, String attribute, WSAttributeOption[] options)voidSoapDocumentClient. setPassword(String sid, long docId, String password)longSoapDocumentMetadataClient. storeAttributeSet(String sid, WSAttributeSet attributeSet)longSoapDocumentMetadataClient. storeTemplate(String sid, WSTemplate template)voidSoapBookmarkClient. unbookmarkDocument(String sid, long docId)voidSoapBookmarkClient. unbookmarkFolder(String sid, long folderId)voidSoapDocumentClient. unlock(String sid, long docId)voidSoapDocumentClient. unsetPassword(String sid, long docId, String currentPassword)voidSoapDocumentClient. update(String sid, WSDocument document)voidSoapFolderClient. update(String sid, WSFolder folder)longSoapDocumentClient. upload(String sid, Long docId, Long folderId, boolean release, String filename, String language, javax.activation.DataHandler content)voidSoapDocumentClient. uploadResource(String sid, long docId, String fileVersion, String suffix, File content)voidSoapDocumentClient. uploadResource(String sid, long docId, String fileVersion, String suffix, javax.activation.DataHandler content) -
Uses of WebserviceException in com.logicaldoc.webservice.soap.endpoint
Methods in com.logicaldoc.webservice.soap.endpoint that throw WebserviceException Modifier and Type Method Description WSNoteSoapDocumentService. addNote(String sid, long docId, String note)WSBookmarkSoapBookmarkService. bookmarkDocument(String sid, long docId)WSBookmarkSoapBookmarkService. bookmarkFolder(String sid, long folderId)voidSoapDocumentService. checkin(String sid, long docId, String comment, String filename, boolean release, WSDocument docVO, InputStream content)voidSoapDocumentService. checkin(String sid, long docId, String comment, String filename, boolean release, javax.activation.DataHandler content)voidSoapDocumentService. checkinDocument(String sid, long docId, String comment, String filename, boolean release, WSDocument docVO, InputStream content)voidSoapDocumentService. checkinDocument(String sid, long docId, String comment, String filename, boolean release, WSDocument docVO, javax.activation.DataHandler content)voidSoapDocumentService. checkout(String sid, long docId)WSDocumentSoapDocumentService. copy(String sid, long docId, long folderId)voidSoapFolderService. copy(String sid, long folderId, long targetId, int foldersOnly, String securityOption)WSDocumentSoapDocumentService. create(String sid, WSDocument document, InputStream content)WSDocumentSoapDocumentService. create(String sid, WSDocument document, javax.activation.DataHandler content)WSFolderSoapFolderService. create(String sid, WSFolder folder)WSDocumentSoapDocumentService. createAlias(String sid, long docId, long folderId, String type)WSFolderSoapFolderService. createAlias(String sid, long parentId, long foldRef)StringSoapDocumentService. createDownloadTicket(String sid, long docId, String suffix, Integer expireHours, String expireDate, Integer maxDownloads)longSoapFolderService. createFolder(String sid, long parentId, String name)WSFolderSoapFolderService. createPath(String sid, long parentId, String path)voidSoapDocumentService. createPdf(String sid, long docId, String fileVersion)voidSoapDocumentService. createThumbnail(String sid, long docId, String fileVersion, String type)voidSoapDocumentService. delete(String sid, long docId)voidSoapFolderService. delete(String sid, long folderId)voidSoapDocumentMetadataService. deleteAttributeSet(String sid, long setId)voidSoapBookmarkService. deleteBookmark(String sid, long bookmarkId)voidSoapDocumentService. deleteLink(String sid, long id)voidSoapDocumentService. deleteNote(String sid, long noteId)voidSoapDocumentMetadataService. deleteTemplate(String sid, long templateId)StringSoapDocumentService. deleteVersion(String sid, long docId, String version)WSFolderSoapFolderService. findByPath(String sid, String path)WSDocument[]SoapDocumentService. getAliases(String sid, long docId)String[]SoapDocumentMetadataService. getAttributeOptions(String sid, long setId, String attribute)WSAttributeOption[]SoapDocumentMetadataService. getAttributeOptionsByCategory(String sid, long setId, String attribute, String category)WSAttributeSetSoapDocumentMetadataService. getAttributeSet(String sid, String name)WSAttributeSetSoapDocumentMetadataService. getAttributeSetById(String sid, long setId)WSBookmark[]SoapBookmarkService. getBookmarks(String sid)javax.activation.DataHandlerSoapDocumentService. getContent(String sid, long docId)WSFolderSoapFolderService. getDefaultWorkspace(String sid)WSDocumentSoapDocumentService. getDocument(String sid, long docId)WSDocumentSoapDocumentService. getDocumentByCustomId(String sid, String customId)WSDocument[]SoapDocumentService. getDocuments(String sid, Long[] docIds)StringSoapDocumentService. getExtractedText(String sid, long docId)WSFolderSoapFolderService. getFolder(String sid, long folderId)WSRight[]SoapDocumentMetadataService. getGrantedGroups(String sid, long templateId)WSRight[]SoapFolderService. getGrantedGroups(String sid, long folderId)WSRight[]SoapDocumentMetadataService. getGrantedUsers(String sid, long templateId)WSRight[]SoapFolderService. getGrantedUsers(String sid, long folderId)WSLink[]SoapDocumentService. getLinks(String sid, long docId)WSNote[]SoapDocumentService. getNotes(String sid, long docId)WSFolder[]SoapFolderService. getPath(String sid, long folderId)WSRating[]SoapDocumentService. getRatings(String sid, long docId)WSDocument[]SoapDocumentService. getRecentDocuments(String sid, Integer max)javax.activation.DataHandlerSoapDocumentService. getResource(String sid, long docId, String fileVersion, String suffix)WSFolderSoapFolderService. getRootFolder(String sid)WSTemplateSoapDocumentMetadataService. getTemplate(String sid, String name)WSTemplateSoapDocumentMetadataService. getTemplateById(String sid, long templateId)WSDocumentSoapDocumentService. getVersion(String sid, long docId, String version)javax.activation.DataHandlerSoapDocumentService. getVersionContent(String sid, long docId, String version)WSDocument[]SoapDocumentService. getVersions(String sid, long docId)voidSoapFolderService. grantGroup(String sid, long folderId, long groupId, int permissions, boolean recursive)voidSoapDocumentMetadataService. grantGroupToTemplate(String sid, long templateId, long groupId, int permissions)voidSoapFolderService. grantUser(String sid, long folderId, long userId, int permissions, boolean recursive)voidSoapDocumentMetadataService. grantUserToTemplate(String sid, long templateId, long userId, int permissions)booleanSoapFolderService. isGranted(String sid, long folderId, int permission)booleanSoapDocumentService. isReadable(String sid, long docId)booleanSoapFolderService. isReadable(String sid, long folderId)booleanSoapDocumentMetadataService. isTemplateReadable(String sid, long templateId)booleanSoapDocumentMetadataService. isTemplateWritable(String sid, long templateId)booleanSoapFolderService. isWritable(String sid, long folderId)WSLinkSoapDocumentService. link(String sid, long doc1, long doc2, String type)WSAttributeSet[]SoapDocumentMetadataService. listAttributeSets(String sid)WSFolder[]SoapFolderService. listChildren(String sid, long folderId)WSDocument[]SoapDocumentService. listDocuments(String sid, long folderId, String fileName)WSTemplate[]SoapDocumentMetadataService. listTemplates(String sid)WSFolder[]SoapFolderService. listWorkspaces(String sid)voidSoapDocumentService. lock(String sid, long docId)voidSoapFolderService. merge(String sid, long sourceId, long targetId)voidSoapDocumentService. move(String sid, long docId, long folderId)voidSoapFolderService. move(String sid, long folderId, long parentId)voidSoapDocumentService. promoteVersion(String sid, long docId, String version)WSRatingSoapDocumentService. rateDocument(String sid, long docId, int vote)voidSoapDocumentService. reindex(String sid, long docId, String content)voidSoapDocumentService. rename(String sid, long docId, String name)voidSoapFolderService. rename(String sid, long folderId, String name)voidSoapDocumentService. replaceFile(String sid, long docId, String fileVersion, String comment, javax.activation.DataHandler content)voidSoapDocumentService. restore(String sid, long docId, long folderId)WSBookmarkSoapBookmarkService. saveBookmark(String sid, WSBookmark bookmark)WSNoteSoapDocumentService. saveNote(String sid, long docId, WSNote wsNote)voidSoapDocumentService. sendEmail(String sid, Long[] docIds, String recipients, String subject, String message)voidSoapDocumentMetadataService. setAttributeOptions(String sid, long setId, String attribute, WSAttributeOption[] wsOptions)voidSoapDocumentService. setPassword(String sid, long docId, String password)longSoapDocumentMetadataService. storeAttributeSet(String sid, WSAttributeSet attributeSet)longSoapDocumentMetadataService. storeTemplate(String sid, WSTemplate template)voidSoapBookmarkService. unbookmarkDocument(String sid, long docId)voidSoapBookmarkService. unbookmarkFolder(String sid, long folderId)voidSoapDocumentService. unlock(String sid, long docId)voidSoapDocumentService. unsetPassword(String sid, long docId, String currentPassword)voidSoapDocumentService. update(String sid, WSDocument document)voidSoapFolderService. update(String sid, WSFolder folder)longSoapDocumentService. upload(String sid, Long docId, Long folderId, boolean release, String filename, String language, javax.activation.DataHandler content)voidSoapDocumentService. uploadResource(String sid, long docId, String fileVersion, String suffix, javax.activation.DataHandler content)
-