Uses of Class
com.logicaldoc.core.document.Document
-
Packages that use Document Package Description com.logicaldoc.core Core plug-in that contains the most important domain objectscom.logicaldoc.core.automation Automation subsystem that allows you to program your own logic inside the platform.
The automation engine can be accessed through the classAutomation
Please note the special annotationAutomationDictionarythat is used to automatically put in the Dictionary whatever bean you need.com.logicaldoc.core.conversion Machinery for converting documents to different formats.com.logicaldoc.core.document com.logicaldoc.core.document.dao com.logicaldoc.core.document.thumbnail Machinery for building thumbnails of the first page of the documents.com.logicaldoc.core.parser Machinery for parsing different file formats.com.logicaldoc.core.parser.wordperfect com.logicaldoc.core.searchengine The core of the search engine.com.logicaldoc.core.store The store sub-system responsible for persisting the binaries of the documents.com.logicaldoc.core.transfer com.logicaldoc.core.util com.logicaldoc.web.service GWT services implementations.com.logicaldoc.webservice.model -
-
Uses of Document in com.logicaldoc.core
Methods in com.logicaldoc.core that return Document Modifier and Type Method Description DocumentHistory. getDocument()Methods in com.logicaldoc.core with parameters of type Document Modifier and Type Method Description voidHistory. setDocument(Document document) -
Uses of Document in com.logicaldoc.core.automation
Methods in com.logicaldoc.core.automation that return Document Modifier and Type Method Description DocumentDocTool. convert(Document doc, String format, String username)Convert a document in another format and saves the result in another file in the same folderDocumentDocTool. copy(Document doc, String targetPath, String username)Copies a document into a target folderDocumentDocTool. copyResource(Document doc, String fileVersion, String suffix, String newFileName, String username)Copies a resource in a file in the same folder of the original documentDocumentDocTool. createAlias(Document originalDoc, Folder targetFolder, String type, String username)Creates an alias to a documentDocumentDocTool. createAlias(Document originalDoc, String targetPath, String type, String username)Creates an alias to a documentDocumentDocTool. findById(long docId)Retrieves a document by it's identifierDocumentDocTool. findByPath(String path)Retrieves a document by it's pathDocumentDocTool. findByPath(String path, Long tenantId)Retrieves a document by it's pathDocumentDocTool. merge(Collection<Document> documents, long targetFolderId, String fileName, String username)Merges a set of documents into a single PDF fileMethods in com.logicaldoc.core.automation that return types with arguments of type Document Modifier and Type Method Description List<Document>MailTool. extractAttachments(Document doc, String filterFileName, String username)Extracts attachments of email files (.eml, .msg) in the current folderMethods in com.logicaldoc.core.automation with parameters of type Document Modifier and Type Method Description voidDocTool. addNote(Document doc, String text, String username)Creates a new note for the whole documentDocumentDocTool. convert(Document doc, String format, String username)Convert a document in another format and saves the result in another file in the same foldervoidDocTool. convertPDF(Document doc)Converts a document in PDF format and saves it as ancillary resource of the document with suffixFormatConverterManager.PDF_CONVERSION_SUFFIX.DocumentDocTool. copy(Document doc, String targetPath, String username)Copies a document into a target folderDocumentDocTool. copyResource(Document doc, String fileVersion, String suffix, String newFileName, String username)Copies a resource in a file in the same folder of the original documentintDocTool. countPages(Document document)Counts the number of pages of a documentDocumentDocTool. createAlias(Document originalDoc, Folder targetFolder, String type, String username)Creates an alias to a documentDocumentDocTool. createAlias(Document originalDoc, String targetPath, String type, String username)Creates an alias to a documentFolderDocTool. createPath(Document doc, String targetPath, String username)Creates a path, all existing nodes in the specified path will be reusedStringDocTool. displayUrl(Document doc)Builds the display url of a document(display permalink)EMailMailTool. documentToEMail(Document document, boolean extractAttachments)Creates anEMailobject given the document that stores an email message.StringDocTool. downloadUrl(Document doc)Builds the download url of a document(download permalink)List<Document>MailTool. extractAttachments(Document doc, String filterFileName, String username)Extracts attachments of email files (.eml, .msg) in the current folderStringDocTool. getPath(Document doc)Calculates the full path of a documentvoidDocTool. initialize(Document doc)Initializes lazy loaded collectionsvoidDocTool. link(Document doc1, Document doc2, String type)Links two documentsvoidDocTool. move(Document doc, String targetPath, String username)Moves a document into a target folderStringDocTool. parse(Document document, String fileVersion)Extracts the texts from a document, using the same analyzer used for the full-text processing.voidMailTool. sendDocument(Document document, String from, String to, String subject, String message)Sends a document by email to a recipientvoidMailTool. sendDocument(Document document, String from, Collection<String> to, String subject, String message)Sends a document by email to a selection of recipientsvoidDocTool. store(Document doc)Saves / updates a document into the databasevoidDocTool. store(Document doc, DocumentHistory transaction)Saves / updates a document into the databasevoidDocTool. store(Document doc, String username)Saves / updates a document into the databaseMethod parameters in com.logicaldoc.core.automation with type arguments of type Document Modifier and Type Method Description List<Long>DocTool. getIds(Collection<Document> docs)Converts a collection of documents in a collection of identifiersDocumentDocTool. merge(Collection<Document> documents, long targetFolderId, String fileName, String username)Merges a set of documents into a single PDF filevoidMailTool. sendDocuments(Collection<Document> documents, String from, String to, String subject, String message)Sends some documents to a recipientvoidMailTool. sendDocuments(Collection<Document> documents, String from, Collection<String> to, String subject, String message)Sends some documents to a selection of recipients -
Uses of Document in com.logicaldoc.core.conversion
Methods in com.logicaldoc.core.conversion that return Document Modifier and Type Method Description DocumentFormatConverterManager. convert(Document document, String fileVersion, String format, DocumentHistory transaction)Converts a document into another format and saves the resulting file in the same folderMethods in com.logicaldoc.core.conversion with parameters of type Document Modifier and Type Method Description voidAbstractFormatConverter. convert(String sid, Document document, File src, File dest)If the converter is enabled it invokes theAbstractFormatConverter.internalConvert(String, Document, File, File)voidFormatConverter. convert(String sid, Document document, File src, File dest)Performs the conversionDocumentFormatConverterManager. convert(Document document, String fileVersion, String format, DocumentHistory transaction)Converts a document into another format and saves the resulting file in the same foldervoidNotAvailableConverter. convert(String sid, Document document, File src, File dest)voidFormatConverterManager. convertToFile(Document document, String fileVersion, File out, DocumentHistory transaction)Converts a document and writes the content of the conversion into a file.voidFormatConverterManager. convertToPdf(Document document, String sid)Shortcut for convertToPdf(document, null, transaction)voidFormatConverterManager. convertToPdf(Document document, String fileVersion, String sid)Creates the pdf for the specified document and file version (suffix PDF_CONVERSION_SUFFIX).byte[]FormatConverterManager. getPdfContent(Document document, String fileVersion, String sid)Retrieves the content of the Pdf conversion.voidGhostscriptConverter. internalConvert(String sid, Document document, File src, File dest)voidImageConverter. internalConvert(String sid, Document document, File src, File dest)voidP7MConverter. internalConvert(String sid, Document document, File src, File dest)voidRarConverter. internalConvert(String sid, Document document, File src, File dest)voidSevenZipConverter. internalConvert(String sid, Document document, File src, File dest)voidTarConverter. internalConvert(String sid, Document document, File src, File dest)voidXMLConverter. internalConvert(String sid, Document document, File src, File dest)voidZipConverter. internalConvert(String sid, Document document, File src, File dest)voidFormatConverterManager. writePdfToFile(Document document, String fileVersion, File out, String sid)Write the content of the Pdf conversion into a file. -
Uses of Document in com.logicaldoc.core.document
Methods in com.logicaldoc.core.document that return Document Modifier and Type Method Description DocumentDocumentManager. copyToFolder(Document doc, Folder folder, DocumentHistory transaction)Copy a document to the specified folder.DocumentDocumentManagerImpl. copyToFolder(Document doc, Folder folder, DocumentHistory transaction)DocumentDocumentManager. create(File file, Document docVO, DocumentHistory transaction)Creates a new Document.DocumentDocumentManager. create(InputStream content, Document docVO, DocumentHistory transaction)Creates a new Document.DocumentDocumentManagerImpl. create(File file, Document docVO, DocumentHistory transaction)DocumentDocumentManagerImpl. create(InputStream content, Document docVO, DocumentHistory transaction)DocumentDocumentManager. createAlias(Document doc, Folder folder, String type, DocumentHistory transaction)Create an alias(shortcut) associated to the given doc to the specified folder.DocumentDocumentManagerImpl. createAlias(Document doc, Folder folder, String aliasType, DocumentHistory transaction)DocumentDocumentLink. getDocument1()DocumentDocumentLink. getDocument2()DocumentDocumentManager. merge(Collection<Document> documents, long targetFolderId, String fileName, DocumentHistory transaction)Merges a set of documents into a single PDF fileDocumentDocumentManagerImpl. merge(Collection<Document> documents, long targetFolderId, String fileName, DocumentHistory transaction)DocumentDocumentManager. replaceAlias(long aliasId, DocumentHistory transaction)Replaces an alias with a copy of the original fileDocumentDocumentManagerImpl. replaceAlias(long aliasId, DocumentHistory transaction)Methods in com.logicaldoc.core.document with parameters of type Document Modifier and Type Method Description voidDocumentInitializer. afterCheckin(Document document, DocumentHistory transaction, Map<String,Object> dictionary)voidDocumentListener. afterCheckin(Document document, DocumentHistory transaction, Map<String,Object> dictionary)Called after a document is checked invoidDocumentValidator. afterCheckin(Document document, DocumentHistory transaction, Map<String,Object> dictionary)voidDocumentInitializer. afterSaveHistory(Document document, DocumentHistory event, Map<String,Object> dictionary)voidDocumentListener. afterSaveHistory(Document document, DocumentHistory event, Map<String,Object> dictionary)Called after an event has been storedvoidDocumentValidator. afterSaveHistory(Document document, DocumentHistory event, Map<String,Object> dictionary)voidDocumentInitializer. afterStore(Document document, DocumentHistory transaction, Map<String,Object> dictionary)voidDocumentListener. afterStore(Document document, DocumentHistory transaction, Map<String,Object> dictionary)Called after a document is stored in the databasevoidDocumentValidator. afterStore(Document document, DocumentHistory transaction, Map<String,Object> dictionary)voidDocumentInitializer. beforeCheckin(Document document, DocumentHistory transaction, Map<String,Object> dictionary)voidDocumentListener. beforeCheckin(Document document, DocumentHistory transaction, Map<String,Object> dictionary)Called before a document is checked invoidDocumentValidator. beforeCheckin(Document document, DocumentHistory transaction, Map<String,Object> dictionary)voidDocumentInitializer. beforeStore(Document document, DocumentHistory transaction, Map<String,Object> dictionary)voidDocumentListener. beforeStore(Document document, DocumentHistory transaction, Map<String,Object> dictionary)Called before a document is stored in the databasevoidDocumentValidator. beforeStore(Document document, DocumentHistory transaction, Map<String,Object> dictionary)voidDocumentManager. changeIndexingStatus(Document doc, int status)Utility method used to declare that: the document must be taken into consideration by the indexer (status =AbstractDocument.INDEX_TO_INDEX. the document must be taken into consideration by the indexer for the metadata only(status =AbstractDocument.INDEX_TO_INDEX_METADATA. the document must not be taken into consideration by the indexer (status =AbstractDocument.INDEX_SKIP).voidDocumentManagerImpl. changeIndexingStatus(Document doc, int status)DocumentDocumentManager. copyToFolder(Document doc, Folder folder, DocumentHistory transaction)Copy a document to the specified folder.DocumentDocumentManagerImpl. copyToFolder(Document doc, Folder folder, DocumentHistory transaction)intDocumentManager. countPages(Document doc)Counts the number of pages of a documentintDocumentManagerImpl. countPages(Document doc)DocumentDocumentManager. create(File file, Document docVO, DocumentHistory transaction)Creates a new Document.DocumentDocumentManager. create(InputStream content, Document docVO, DocumentHistory transaction)Creates a new Document.DocumentDocumentManagerImpl. create(File file, Document docVO, DocumentHistory transaction)DocumentDocumentManagerImpl. create(InputStream content, Document docVO, DocumentHistory transaction)static VersionVersion. create(Document document, User user, String comment, String event, boolean release)Factory method that creates a Version and replicate all given document's properties.
The new version and fileVersion will be set in both Document and Version
Important: The created Version is not persistentDocumentDocumentManager. createAlias(Document doc, Folder folder, String type, DocumentHistory transaction)Create an alias(shortcut) associated to the given doc to the specified folder.DocumentDocumentManagerImpl. createAlias(Document doc, Folder folder, String aliasType, DocumentHistory transaction)voidDocumentManager. deleteFromIndex(Document doc)Utility method for document removal from index and database update(flag indexed)voidDocumentManagerImpl. deleteFromIndex(Document doc)Utility method for document removal from indexvoidDocumentManager. moveToFolder(Document doc, Folder folder, DocumentHistory transaction)Moves a document to the specified folder.voidDocumentManagerImpl. moveToFolder(Document doc, Folder folder, DocumentHistory transaction)StringDocumentManager. parseDocument(Document doc, String fileVersion)Retrieves the document's content as a stringStringDocumentManagerImpl. parseDocument(Document doc, String fileVersion)voidDocumentLink. setDocument1(Document document1)voidDocumentLink. setDocument2(Document document2)voidDocumentManager. update(Document doc, Document docVO, DocumentHistory transaction)Updates an existing document and marks it to be re-indexedvoidDocumentManagerImpl. update(Document document, Document docVO, DocumentHistory transaction)Method parameters in com.logicaldoc.core.document with type arguments of type Document Modifier and Type Method Description DocumentDocumentManager. merge(Collection<Document> documents, long targetFolderId, String fileName, DocumentHistory transaction)Merges a set of documents into a single PDF fileDocumentDocumentManagerImpl. merge(Collection<Document> documents, long targetFolderId, String fileName, DocumentHistory transaction)Constructors in com.logicaldoc.core.document with parameters of type Document Constructor Description Document(Document source) -
Uses of Document in com.logicaldoc.core.document.dao
Methods in com.logicaldoc.core.document.dao that return Document Modifier and Type Method Description DocumentDocumentDAO. findByCustomId(String customId, long tenantId)This method finds a document by the custom ID.DocumentHibernateDocumentDAO. findByCustomId(String customId, long tenantId)DocumentDocumentDAO. findByPath(String path, long tenantId)Finds a document by it's full pathDocumentHibernateDocumentDAO. findByPath(String path, long tenantId)DocumentDocumentDAO. findDocument(long docId)This method finds a document by the ID and if it is an alias the referenced document is returned instead.DocumentHibernateDocumentDAO. findDocument(long docId)Methods in com.logicaldoc.core.document.dao that return types with arguments of type Document Modifier and Type Method Description List<Document>DocumentDAO. findArchivedByFolder(long folderId)Finds archived documents in a folder (direct childeren only)List<Document>HibernateDocumentDAO. findArchivedByFolder(long folderId)List<Document>DocumentDAO. findByFileNameAndParentFolderId(Long folderId, String fileName, Long excludeId, Long tenantId, Integer max)Finds that document that lies under a specific folder (given by the id) an with a given fileName(like operator is used)List<Document>HibernateDocumentDAO. findByFileNameAndParentFolderId(Long folderId, String fileName, Long excludeId, Long tenantId, Integer max)List<Document>DocumentDAO. findByFolder(long folderId, Integer max)Finds all documents direct children of the given folder.List<Document>HibernateDocumentDAO. findByFolder(long folderId, Integer max)List<Document>DocumentDAO. findByIds(Long[] ids, Integer max)Finds all documents whose id is included in the given pool of idsList<Document>HibernateDocumentDAO. findByIds(Long[] ids, Integer max)List<Document>DocumentDAO. findByIndexed(int indexed)Finds all documents by the indexed state.List<Document>HibernateDocumentDAO. findByIndexed(int indexed)List<Document>DocumentDAO. findByLockUserAndStatus(Long userId, Integer status)Finds all document of0 the specified status and locked by the specified userList<Document>HibernateDocumentDAO. findByLockUserAndStatus(Long userId, Integer status)List<Document>DocumentDAO. findByUserIdAndTag(long userId, String tag, Integer max)Finds authorized documents for a user having a specified tag.List<Document>HibernateDocumentDAO. findByUserIdAndTag(long userId, String tag, Integer max)List<Document>DocumentDAO. findDeleted(long userId, Integer max)Finds all deleted docs of a specific user.List<Document>HibernateDocumentDAO. findDeleted(long userId, Integer maxHits)List<Document>DocumentDAO. findDeletedDocs()Finds the list of deleted documents.List<Document>HibernateDocumentDAO. findDeletedDocs()List<Document>DocumentDAO. findLastDownloadsByUserId(long userId, int max)Finds the last downloaded documents by the given userList<Document>HibernateDocumentDAO. findLastDownloadsByUserId(long userId, int maxResults)List<Document>DocumentDAO. findLastModifiedByUserId(long userId, int max)Finds a max number of documents last modified by an user.List<Document>HibernateDocumentDAO. findLastModifiedByUserId(long userId, int maxElements)List<Document>DocumentDAO. findLinkedDocuments(long docId, String linkType, Integer direction)This method enlists documents linked to the given document.List<Document>HibernateDocumentDAO. findLinkedDocuments(long docId, String linkType, Integer direction)Methods in com.logicaldoc.core.document.dao with parameters of type Document Modifier and Type Method Description voidDocumentDAO. initialize(Document doc)Initializes lazy loaded collectionsvoidHibernateDocumentDAO. initialize(Document doc)voidDocumentDAO. saveDocumentHistory(Document doc, DocumentHistory transaction)Saves a document's historyvoidHibernateDocumentDAO. saveDocumentHistory(Document doc, DocumentHistory transaction)voidDocumentDAO. store(Document doc, DocumentHistory transaction)This method persists the document object and insert a new document history entryvoidHibernateDocumentDAO. store(Document doc)voidHibernateDocumentDAO. store(Document doc, DocumentHistory transaction)voidDocumentDAO. updateDigest(Document doc)Updates the document's digest (SHA-1)voidHibernateDocumentDAO. updateDigest(Document doc)Method parameters in com.logicaldoc.core.document.dao with type arguments of type Document Modifier and Type Method Description voidDocumentDAO. deleteAll(Collection<Document> documents, int delCode, DocumentHistory transaction)Deletes all documents form the database and modifies the custom ids of all documentsvoidDocumentDAO. deleteAll(Collection<Document> documents, DocumentHistory transaction)Shortcut for deleteAll(documents, 1, transaction)voidHibernateDocumentDAO. deleteAll(Collection<Document> documents, int delCode, DocumentHistory transaction)voidHibernateDocumentDAO. deleteAll(Collection<Document> documents, DocumentHistory transaction) -
Uses of Document in com.logicaldoc.core.document.thumbnail
Methods in com.logicaldoc.core.document.thumbnail with parameters of type Document Modifier and Type Method Description voidEpubThumbnailBuilder. buildThumbnail(String sid, Document document, String fileVersion, File src, File dest, int size, int compression)voidImageThumbnailBuilder. buildThumbnail(String sid, Document document, String fileVersion, File src, File dest, int size, int quality)voidMp3ThumbnailBuilder. buildThumbnail(String sid, Document document, String fileVersion, File src, File dest, int size, int quality)voidPdfThumbnailBuilder. buildThumbnail(String sid, Document document, String fileVersion, File src, File dest, int size, int compression)voidThumbnailBuilder. buildThumbnail(String sid, Document document, String fileVersion, File src, File dest, int size, int quality)Produce the thumbnailvoidVideoThumbnailBuilder. buildThumbnail(String sid, Document document, String fileVersion, File src, File dest, int size, int quality)voidThumbnailManager. createMobile(Document document, String fileVersion, String sid)Creates the mobile image for the specified document and file version.voidThumbnailManager. createTile(Document document, String fileVersion, String sid)Creates the tile for the specified document and file version.voidThumbnailManager. createTumbnail(Document document, String sid)Creates the thumbnail for the specified documentvoidThumbnailManager. createTumbnail(Document document, String fileVersion, int size, Integer quality, String sid)Creates the thumbnail for the specified document and file version using given size and quality.voidThumbnailManager. createTumbnail(Document document, String fileVersion, String sid)Creates the thumbnail for the specified document and file version. -
Uses of Document in com.logicaldoc.core.parser
Methods in com.logicaldoc.core.parser with parameters of type Document Modifier and Type Method Description voidAbiWordParser. internalParse(InputStream input, String filename, String encoding, Locale locale, String tenant, Document document, String fileVersion, StringBuilder content)voidCatchAllParser. internalParse(InputStream input, String filename, String encoding, Locale locale, String tenant, Document document, String fileVersion, StringBuilder content)voidDummyParser. internalParse(InputStream input, String filename, String encoding, Locale locale, String tenant, Document document, String fileVersion, StringBuilder contentx)voidEpubParser. internalParse(InputStream input, String filename, String encoding, Locale locale, String tenant, Document document, String fileVersion, StringBuilder content)voidHTMLParser. internalParse(InputStream input, String filename, String encoding, Locale locale, String tenant, Document document, String fileVersion, StringBuilder content)voidKOfficeParser. internalParse(InputStream input, String filename, String encoding, Locale locale, String tenant, Document document, String fileVersion, StringBuilder content)voidOpenOfficeParser. internalParse(InputStream input, String filename, String encoding, Locale locale, String tenant, Document document, String fileVersion, StringBuilder content)voidPDFParser. internalParse(InputStream input, String filename, String encoding, Locale locale, String tenant, Document document, String fileVersion, StringBuilder content)voidPPTParser. internalParse(InputStream input, String filename, String encoding, Locale locale, String tenant, Document document, String fileVersion, StringBuilder content)voidRarParser. internalParse(InputStream input, String filename, String encoding, Locale locale, String tenant, Document document, String fileVersion, StringBuilder content)voidRTFParser. internalParse(InputStream input, String filename, String encoding, Locale locale, String tenant, Document document, String fileVersion, StringBuilder content)voidSevenZipParser. internalParse(InputStream input, String filename, String encoding, Locale locale, String tenant, Document document, String fileVersion, StringBuilder content)voidTarParser. internalParse(InputStream input, String filename, String encoding, Locale locale, String tenant, Document document, String fileVersion, StringBuilder content)voidTXTParser. internalParse(InputStream input, String filename, String encoding, Locale locale, String tenant, Document document, String fileVersion, StringBuilder content)voidXLSParser. internalParse(InputStream input, String filename, String encoding, Locale locale, String tenant, Document document, String fileVersion, StringBuilder content)voidXMLParser. internalParse(InputStream input, String filename, String encoding, Locale locale, String tenant, Document document, String fileVersion, StringBuilder content)voidZABWParser. internalParse(InputStream input, String filename, String encoding, Locale locale, String tenant, Document document, String fileVersion, StringBuilder content)voidZipParser. internalParse(InputStream input, String filename, String encoding, Locale locale, String tenant, Document document, String fileVersion, StringBuilder content)StringAbstractParser. parse(File file, String filename, String encoding, Locale locale, String tenant, Document document, String fileVersion)StringAbstractParser. parse(InputStream input, String filename, String encoding, Locale locale, String tenant, Document document, String fileVersion)StringDOCParser. parse(InputStream input, String filename, String encoding, Locale locale, String tenant, Document document, String fileVersion)StringParser. parse(File file, String filename, String encoding, Locale locale, String tenant, Document document, String fileVersion)Same asParser.parse(InputStream, String, String, Locale, String, Document, String), but use this when you have a file rather than a stream.StringParser. parse(InputStream input, String filename, String encoding, Locale locale, String tenant, Document document, String fileVersion)Extracts content for the text content of the given binary document.static StringParserFactory. parse(InputStream input, String filename, String encoding, Locale locale, long tenantId, Document document, String fileVersion)Gets the proper parser and parse the given contentStringTXTParser. parse(File file, String filename, String encoding, Locale locale, String tenant, Document document, String fileVersion)StringZABWParser. parse(File file, String filename, String encoding, Locale locale, String tenant, Document document, String fileVersion) -
Uses of Document in com.logicaldoc.core.parser.wordperfect
Methods in com.logicaldoc.core.parser.wordperfect with parameters of type Document Modifier and Type Method Description voidWordPerfectParser. internalParse(InputStream input, String filename, String encoding, Locale locale, String tenant, Document document, String fileVersion, StringBuilder content) -
Uses of Document in com.logicaldoc.core.searchengine
Subclasses of Document in com.logicaldoc.core.searchengine Modifier and Type Class Description classHitSearch resultMethods in com.logicaldoc.core.searchengine with parameters of type Document Modifier and Type Method Description voidSearchEngine. addHit(Document document, InputStream content)Adds a new hit to the indexvoidSearchEngine. addHit(Document document, String content)Adds a new Hit into the indexvoidStandardSearchEngine. addHit(Document document, InputStream content)voidStandardSearchEngine. addHit(Document document, String content) -
Uses of Document in com.logicaldoc.core.store
Methods in com.logicaldoc.core.store with parameters of type Document Modifier and Type Method Description StringAbstractStorer. getResourceName(Document doc, String fileVersion, String suffix)StringStorer. getResourceName(Document doc, String fileVersion, String suffix)Computes the resource name inside the container -
Uses of Document in com.logicaldoc.core.transfer
Constructors in com.logicaldoc.core.transfer with parameters of type Document Constructor Description InMemoryZipImport(Document docVo, String charset)ZipImport(Document docVo, String fileNameCharset)Constructor. -
Uses of Document in com.logicaldoc.core.util
Methods in com.logicaldoc.core.util with parameters of type Document Modifier and Type Method Description static StringDocUtil. getFileName(Document document, String fileVersion)static StringDocUtil. getTenantName(Document document) -
Uses of Document in com.logicaldoc.web.service
Methods in com.logicaldoc.web.service that return Document Modifier and Type Method Description static DocumentDocumentServiceImpl. toDocument(GUIDocument guiDocument)Produces a plain new Document from a GUIDocumentMethods in com.logicaldoc.web.service with parameters of type Document Modifier and Type Method Description static GUIDocumentDocumentServiceImpl. fromDocument(Document doc, GUIFolder folder, User sessionUser) -
Uses of Document in com.logicaldoc.webservice.model
Methods in com.logicaldoc.webservice.model that return Document Modifier and Type Method Description static DocumentWSUtil. toDocument(WSDocument wsDoc)
-