Uses of Class
com.docmosis.template.TemplateStoreException

Packages that use TemplateStoreException
com.docmosis.document   
com.docmosis.template   
com.docmosis.template.analysis.structure   
com.docmosis.template.store   
com.docmosis.template.store.database   
 

Uses of TemplateStoreException in com.docmosis.document
 

Methods in com.docmosis.document that throw TemplateStoreException
static DocumentRenderResult DocumentProcessor.renderDoc(File template, File outputFile, DataProvider dp)
          Render the given template to the given output file with the given data.
static DocumentRenderResult DocumentProcessor.renderDoc(File template, File outputFile, DataProvider dp, boolean cleanupDataProvider)
          Render the given template to the given output file with the given data.
static DocumentRenderResult DocumentProcessor.renderDoc(File template, OutputStream outputStream, ConversionFormat format, DataProvider dp)
          Render the given template to the given output stream with the given data.
static DocumentRenderResult DocumentProcessor.renderDoc(File template, OutputStream outputStream, ConversionFormat format, DataProvider dp, boolean cleanupDataProvider)
          Render the given template to the given output stream with the given data.
static DocumentRenderResult DocumentProcessor.renderDoc(RenderRequest request)
          Execute a render using the given render request.
static DocumentRenderResult DocumentProcessor.renderDoc(TemplateIdentifier templateId, DataProvider dp, ConversionInstruction instruction, OutputStream streamTo)
          Render the template specified by the given templateId with the given data according to the given instruction.
 

Uses of TemplateStoreException in com.docmosis.template
 

Subclasses of TemplateStoreException in com.docmosis.template
 class TemplateAlreadyExistsException
          This exception is used to identify a problem parsing a template.
 class TemplateNotFoundException
           
 

Uses of TemplateStoreException in com.docmosis.template.analysis.structure
 

Methods in com.docmosis.template.analysis.structure that throw TemplateStoreException
static List TemplateStructureExtractor.getStructureFromDefaultStore(TemplateIdentifier templateId)
          This is a convenience method to extract the TemplateStructure for the given template from the default template store.
static void TemplateStructureExtractor.process(TemplateStructureProcessor processor, TemplateIdentifier templateId)
          This convenience method will get the template from the default TemplateStore and extract the structure before passing it to the given processor to process.
 

Uses of TemplateStoreException in com.docmosis.template.store
 

Methods in com.docmosis.template.store that throw TemplateStoreException
 void TemplateStore.deleteAll()
          Delete all templates in the store.
 void TemplateStoreFactory.PresetTemplateStore.deleteAll()
           
 void TemplateStore.deleteTemplate(TemplateIdentifier templateId)
          Delete the given template from the store.
 void TemplateStoreFactory.PresetTemplateStore.deleteTemplate(TemplateIdentifier templateId)
           
 void TemplateStore.deleteTemplates(TemplateContext context, boolean includeSubContexts)
          Delete all templates in the given context.
 void TemplateStoreFactory.PresetTemplateStore.deleteTemplates(TemplateContext context, boolean includeSubContexts)
           
 TemplateDetails[] TemplateStore.findByContext(TemplateContext templateContext, boolean includeSubContexts)
          Get the list of templates for the given context.
 TemplateDetails[] TemplateStoreFactory.PresetTemplateStore.findByContext(TemplateContext templateContext, boolean includeSubContexts)
           
 Template TemplateStore.getTemplate(TemplateIdentifier templateId)
          Get the (working) template identified by the given templateId.
 Template TemplateStoreFactory.PresetTemplateStore.getTemplate(TemplateIdentifier templateId)
           
 TemplateAnalysis TemplateStore.getTemplateAnalysis(TemplateIdentifier templateId)
          Get the template analysis for the template identified by the given template info.
 TemplateAnalysis TemplateStoreFactory.PresetTemplateStore.getTemplateAnalysis(TemplateIdentifier templateId)
           
 long TemplateStore.getTemplateStoredTime(TemplateIdentifier templateId)
          Return the time that the template was stored in this template store.
 long TemplateStoreFactory.PresetTemplateStore.getTemplateStoredTime(TemplateIdentifier templateId)
           
static void TemplateStoreFactory.initialise()
          Initialise the Template Store factory.
 void DropStoreHelper.process(File dropDirectory)
          Drop a whole directory of templates into the store processing sub-directories recursively.
 void DropStoreHelper.process(File dropDirectory, boolean isRecursive)
          Drop a whole directory of templates into the store optionally processing sub-directories.
 void DropStoreHelper.process(File dropDirectory, TemplateContext storeContext)
          Drop a whole directory of templates into the store recursively processing sub-directories.
 void DropStoreHelper.process(File dropDirectory, TemplateContext storeContext, boolean isRecursive)
          Drop a whole directory of templates into the store optionally processing sub-directories.
 void DropStoreHelper.processDirectory(File dropDirectory, TemplateContext storeContext, boolean isRecursive, boolean continueOnError)
          Drop a whole directory of templates into the store, optionally into a specified context, processing sub-directories and error handling.
 void DropStoreHelper.processJarOrZipFile(File file)
          Process the contents of a Jar or Zip file as it if was a directory.
 void DropStoreHelper.processJarOrZipFile(File file, TemplateContext storeContext, boolean continueOnError)
          Process the contents of a Jar or Zip file as it if was a directory.
 void DropStoreHelper.processResource(URL url)
          Process templates from the specified URL.
 void DropStoreHelper.processResource(URL url, TemplateContext baseContext, boolean continueOnError)
          Process templates from the specified URL.
static TemplateDetails StoreHelper.storeTemplate(String templateName, File templateFile, boolean overwrite, TemplateStore store)
          Store a template in the given template store (this process is known as template registration) specifying whether to overwrite any existing registrations or not.
static TemplateDetails StoreHelper.storeTemplate(String templateName, File templateFile, TemplateStore store)
          Store a template in the given template store.
static TemplateDetails StoreHelper.storeTemplate(TemplateIdentifier templateId, File templateFile, boolean overwrite, boolean waitForConverter, TemplateStore store)
          Store a template in the given template store (this process is known as template registration).
static TemplateDetails StoreHelper.storeTemplate(TemplateIdentifier templateId, File templateFile, TemplateStore store)
          Store a template in the given template store (this process is known as template registration).
static TemplateDetails StoreHelper.storeTemplate(TemplateIdentifier templateId, InputStream origTemplateStream, Long origTemplateLastModified, boolean overwrite, boolean waitForConverter, TemplateStore store)
          Store the given template stream against the given templateId in the given store.
 TemplateDetails TemplateStore.storeTemplate(TemplateIdentifier templateId, InputStream origTemplateSource, Long origTemplateLastModified, InputStream workingTemplateSource, TemplateAnalysis analysis, InputStream thumbnail, boolean overwrite, boolean templateErrorsFatal, String plainTextFieldPrefix, String plainTextFieldSuffix, boolean allowPaddedFields, com.docmosis.util.properties.PropertiesProvider propertyOverrides)
          Store the given InputStream as a template using the given templateId.
 TemplateDetails TemplateStoreFactory.PresetTemplateStore.storeTemplate(TemplateIdentifier templateId, InputStream origTemplateSource, Long origTemplateLastModified, InputStream workingTemplateSource, TemplateAnalysis analysis, InputStream thumbnail, boolean overwrite, boolean templateErrorsFatal, String plainTextFieldPrefix, String plainTextFieldSuffix, boolean allowPaddedFields, com.docmosis.util.properties.PropertiesProvider propertiesProvider)
           
static boolean StoreHelper.templateExists(TemplateIdentifier templateId, TemplateStore store)
          Determines whether the given template exists in the store.
static TemplateValidationResult DropStoreHelper.validateTemplate(InputStream templateStream)
          Process the given stream as a template and return a TemplateValidationResult.
static TemplateValidationResult StoreHelper.validateTemplate(InputStream templateStream)
          Process the given stream as a template and return a TemplateValidationResult.
 

Uses of TemplateStoreException in com.docmosis.template.store.database
 

Subclasses of TemplateStoreException in com.docmosis.template.store.database
 class DatabaseTemplateStoreTableStructureException
           
 



Copyright © 2014–2022 Docmosis Pty Ltd. All rights reserved.