Modifier and Type | Method and Description |
---|---|
protected IResource |
BaseConfigurationEditor.getResource() |
Modifier and Type | Method and Description |
---|---|
IResource |
BaseServiceConnector.getResource() |
IResource |
BaseServiceConnectorEditor.getResource() |
protected IResource |
BaseTreatmentConnectorEditor.getResource() |
IResource |
BaseConnectionEditor.getResource() |
Modifier and Type | Method and Description |
---|---|
protected String |
BaseConnector.evaluateExpressions(String formula,
IContext context,
IResource resource)
Evaluate expressions in formula (ex : ${iUser.login})
|
protected String |
BaseConnector.evaluateExpressions(String formula,
IContext context,
IResource resource,
String language)
Evaluate expressions in formula (ex : ${iUser.login})
|
protected String |
BaseConnector.evaluateExpressions(String formula,
IContext context,
IResource resource,
String language,
boolean isHtmlString)
Evaluate expressions in formula (ex : ${iUser.login})
|
Modifier and Type | Interface and Description |
---|---|
interface |
IDataUnit
This class represents a data unit.
|
interface |
IFile
The file within the library system.
|
interface |
ILinkedResource
A child resource within a table field
|
interface |
IStorageResource
A resource for storage
|
interface |
IVersion
This class represents a version of a document.
|
interface |
IWorkflowInstance
This class represents a process document.
|
Modifier and Type | Method and Description |
---|---|
IResource |
ITransformer.xmlToResource(InputStream inputStream)
Import a resource from an XML stream.
|
IResource |
ITransformer.xmlToResource(InputStream inputStream,
File resourceFolder)
Import a resource from an XML stream.
|
IResource |
ITransformer.xmlToResource(IResource resource,
InputStream inputStream)
Updates a resource.
|
Modifier and Type | Method and Description |
---|---|
void |
ITestReferenceGeneratorExtension.init(IResource resource,
Element element) |
void |
ITransformer.resourceToXML(IResource resource,
Collection columns,
OutputStream outputStream)
Allows to get values of a resource by specifying the columns to retrieve.
|
void |
ITransformer.resourceToXML(IResource resource,
File resourceFolder)
Deprecated.
: use resourceToXML( IResource resource, OutputStream outputStream, File attachmentsFolder, boolean includeAttachmentsContent ) method instead.
|
void |
ITransformer.resourceToXML(IResource resource,
OutputStream outputStream)
Deprecated.
: use resourceToXML( IResource resource, OutputStream outputStream, File attachmentsFolder, boolean includeAttachmentsContent ) method instead.
|
void |
ITransformer.resourceToXML(IResource resource,
OutputStream outputStream,
boolean includeAttachmentsContent)
Deprecated.
: use resourceToXML( IResource resource, OutputStream outputStream, File attachmentsFolder, boolean includeAttachmentsContent ) method instead.
|
void |
ITransformer.resourceToXML(IResource resource,
OutputStream outputStream,
boolean includeAttachmentsContent,
boolean includeWorkflowInstanceBody)
Allows to transform a
IResource object to an XML document. |
void |
ITransformer.resourceToXML(IResource resource,
OutputStream outputStream,
File attachmentsFolder)
Deprecated.
: use resourceToXML( IResource resource, OutputStream outputStream, File attachmentsFolder, boolean includeAttachmentsContent ) method instead.
|
void |
ITransformer.resourceToXML(IResource resource,
OutputStream outputStream,
File attachmentsFolder,
boolean includeAttachmentsContent)
Allows to transform a
IResource object to an XML document. |
IResource |
ITransformer.xmlToResource(IResource resource,
InputStream inputStream)
Updates a resource.
|
Modifier and Type | Method and Description |
---|---|
abstract boolean |
BaseLinkExtension.onCreate(IWorkflowInstance workflowInstance,
IResource resource) |
Modifier and Type | Method and Description |
---|---|
protected IResource |
BaseMailExtension.getResource() |
Modifier and Type | Method and Description |
---|---|
protected IResource |
BaseMappingExtension.getResource() |
Modifier and Type | Method and Description |
---|---|
IResource |
IBaseWorkflowModule.createGenericResource()
Creates a generic resource for mail purposes.
|
IResource |
IBaseDocumentModule.createGenericResource()
Creates a generic resource for mail purposes.
|
IResource |
IBaseWorkflowModule.getResource(IStorageKey key)
Gets a resource object from its identifier.
|
IResource |
IBaseDocumentModule.getResource(IStorageKey key)
Gets a resource object from its identifier.
|
IResource |
IBaseWorkflowModule.getResource(Object object)
Gets a
IResource object from an object. |
IResource |
IBaseWorkflowModule.getResource(String id)
Deprecated.
Use getResource(
IStorageKey key ) method instead. |
Modifier and Type | Method and Description |
---|---|
Collection<? extends IResource> |
IBaseWorkflowModule.getResources(IContext context,
ICatalog catalog)
Gets a collection of
IResource objects from a catalog |
Collection<? extends IResource> |
IBaseDocumentModule.getResources(IContext context,
ICatalog catalog)
Gets a collection of
IResource objects from a catalog |
Collection<? extends IResource> |
IBaseWorkflowModule.getResources(IContext context,
IResourceDefinition resourceDefinition)
Gets a collection of
IResource objects from a resource definition. |
Collection<? extends IResource> |
IBaseDocumentModule.getResources(IContext context,
IResourceDefinition resourceDefinition)
Gets a collection of
IResource objects from a resource definition. |
Modifier and Type | Method and Description |
---|---|
IAttachment |
IBaseWorkflowModule.addAttachment(IResource resource,
String propertyName,
File file)
Adds an attachment as a java.io.File object.
|
IAttachment |
IBaseDocumentModule.addAttachment(IResource resource,
String propertyName,
File file)
Adds an attachment as a java.io.File object.
|
IAttachment |
IBaseWorkflowModule.addAttachment(IResource resource,
String propertyName,
IAttachment attachment)
Adds an attachment from an attachment.
|
IAttachment |
IBaseDocumentModule.addAttachment(IResource resource,
String propertyName,
IAttachment attachment)
Adds an attachment from an attachment.
|
IAttachment |
IBaseWorkflowModule.addAttachment(IResource resource,
String propertyName,
String fileName,
InputStream inputStream)
Adds an attachment as an java.io.InputStream object.
|
IAttachment |
IBaseDocumentModule.addAttachment(IResource resource,
String propertyName,
String fileName,
InputStream inputStream)
Adds an attachment as an java.io.InputStream object.
|
IAttachment |
IBaseWorkflowModule.addAttachment(IResource resource,
String propertyName,
String fileName,
String fullPath)
Adds an attachment with its full path.
|
IAttachment |
IBaseDocumentModule.addAttachment(IResource resource,
String propertyName,
String fileName,
String fullPath)
Adds an attachment with its full path.
|
String |
IBaseWorkflowModule.buildMailMessage(IResource resource,
IMailForm mailForm,
String language)
Evaluates the form and returns the HTML content as a java.lang.String object.
|
ILinkedResource |
IBaseWorkflowModule.createLinkedResource(IResource resource,
String propertyName)
Creates a linked resource into a specified property table.
|
String |
IBaseWorkflowModule.evaluatedHtml(IResource resource,
IMailForm mailForm)
Deprecated.
: use buildMailMessage( IResource resource, IMailForm mailForm, String language )
|
String |
IBaseDocumentModule.evaluatedHtml(IResource resource,
IMailForm mailForm)
Evaluates the form and returns the HTML content as a java.lang.String object.
|
String |
IBaseWorkflowModule.generateReference(IResource resource)
Evaluate the next reference based on the format specified on the Designer tool.
|
String |
IBaseDocumentModule.generateReference(IResource resource)
Evaluate the next reference based on the format specified on the Designer tool.
|
String |
IBaseWorkflowModule.generateReference(IResource resource,
Document format)
Evaluate the next reference based specified format.
|
String |
IBaseWorkflowModule.generateReference(IResource resource,
String format)
Deprecated.
: should not use this method anymore. The format argument is not supported.
|
String |
IBaseDocumentModule.generateReference(IResource resource,
String format)
Evaluate the next reference based on the specified format.
|
IAttachment |
IBaseWorkflowModule.getAttachment(IResource resource,
String propertyName,
String fileName)
Gets an attachment by its file name.
|
IAttachment |
IBaseDocumentModule.getAttachment(IResource resource,
String propertyName,
String fileName)
Gets an attachment by its file name.
|
Collection<? extends IAttachment> |
IBaseWorkflowModule.getAttachments(IResource resource,
String propertyName)
Gets all the attachments associated with a property.
|
Collection<? extends IAttachment> |
IBaseDocumentModule.getAttachments(IResource resource,
String propertyName)
Gets all the attachments associated with a property.
|
IResourceController |
IWorkflowModule.getController(IResource resource)
Gets the resource controller object.
|
Collection<?> |
IBaseWorkflowModule.getExternalElements(IResource resource,
String propertyName)
Gets a collection of
IElement objects from a multiple selector property. |
Collection |
IBaseDocumentModule.getExternalElements(IResource resource,
String propertyName)
Gets a collection of
IElement objects from a multiple selector property. |
IFile |
IBaseWorkflowModule.getExternalFile(IResource resource,
String propertyName)
Gets a
IFile object from a single file selector property. |
IFile |
IBaseDocumentModule.getExternalFile(IResource resource,
String propertyName)
Gets a
IFile object from a single file selector property. |
IFolder |
IBaseWorkflowModule.getExternalFolder(IResource resource,
String propertyName)
Gets a
IFolder object from a single folder selector property. |
IFolder |
IBaseDocumentModule.getExternalFolder(IResource resource,
String propertyName)
Gets a
IFolder object from a single folder selector property. |
IGroup |
IBaseWorkflowModule.getExternalGroup(IResource resource,
String propertyName)
Gets a
IGroup object from a single group selector property. |
IGroup |
IBaseDocumentModule.getExternalGroup(IResource resource,
String propertyName)
Gets a
IGroup object from a single group selector property. |
ILibrary |
IBaseWorkflowModule.getExternalLibrary(IResource resource,
String propertyName)
Gets a
ILibrary object from a single library selector property. |
ILibrary |
IBaseDocumentModule.getExternalLibrary(IResource resource,
String propertyName)
Gets a
ILibrary object from a single library selector property. |
ILocalization |
IBaseWorkflowModule.getExternalLocalization(IResource resource,
String propertyName)
Gets a
ILocalization object from a single localization selector property. |
ILocalization |
IBaseDocumentModule.getExternalLocalization(IResource resource,
String propertyName)
Gets a
ILocalization object from a single localization selector property. |
IOrganization |
IBaseWorkflowModule.getExternalOrganization(IResource resource,
String propertyName)
Gets a
IOrganization object from a single organization selector property. |
IOrganization |
IBaseDocumentModule.getExternalOrganization(IResource resource,
String propertyName)
Gets a
IOrganization object from a single organization selector property. |
IUser |
IBaseWorkflowModule.getExternalUser(IResource resource,
String propertyName)
Gets a
IUser object from a single user selector property. |
IUser |
IBaseDocumentModule.getExternalUser(IResource resource,
String propertyName)
Gets a
IUser object from a single user selector property. |
Collection<? extends ILinkedResource> |
IBaseWorkflowModule.getLinkedResources(IResource resource,
String propertyName)
Gets all the linked resources associated with a table property.
|
Collection<? extends IOptionList.IOption> |
IBaseWorkflowModule.getList(IResource resource,
String propertyName)
Gets the available values of a list property.
|
Collection |
IBaseDocumentModule.getList(IResource resource,
String propertyName)
Gets the available values of a list property.
|
IResourceController |
IWorkflowModule.getResourceController(IResource resource)
Gets the resource controller object.
|
Object |
IBaseWorkflowModule.getValue(IResource resource,
String propertyName)
Gets the value of a property.
|
Object |
IBaseDocumentModule.getValue(IResource resource,
String propertyName)
Gets the value of a property.
|
void |
IBaseWorkflowModule.send(IContext context,
IResource resource,
IMailForm mailForm,
Collection<?> entries,
String subject,
String content)
Deprecated.
use send( IContext context, IResource resource, IMailForm mailForm, Collection extends IUser> mail_to, String comment )
|
void |
IBaseWorkflowModule.send(IContext context,
IResource resource,
IMailForm mailForm,
Collection<? extends IUser> mail_to,
String comment)
Sends a mail by specifying the subject and the content of the body.
|
void |
IBaseDocumentModule.send(IContext context,
IResource resource,
IMailForm mailForm,
Collection entries,
String subject,
String content)
Sends a mail by specifying the subject and the content of the body.
|
void |
IBaseDocumentModule.send(IContext context,
IWorkflow workflow,
IResource resource,
String formName,
Collection entries)
Allows to send a mail.
|
void |
IBaseWorkflowModule.send(IContext context,
IWorkflow workflow,
IResource resource,
String formName,
Collection<?> entries)
Deprecated.
use send( IContext context, IResource resource, IMailForm mailForm, Collection extends IUser> mail_to, String comment )
|
void |
IBaseDocumentModule.setExternalElements(IResource resource,
String propertyName,
Collection elements)
Sets a
IElement to a multiple selector property. |
void |
IBaseWorkflowModule.setExternalElements(IResource resource,
String propertyName,
Collection<?> elements)
Sets a
IElement to a multiple selector property. |
void |
IBaseWorkflowModule.setExternalFile(IResource resource,
String propertyName,
IFile file)
Sets a
IFile to a single selector property. |
void |
IBaseDocumentModule.setExternalFile(IResource resource,
String propertyName,
IFile file)
Sets a
IFile to a single selector property. |
void |
IBaseWorkflowModule.setExternalFolder(IResource resource,
String propertyName,
IFolder folder)
Sets a
IFolder to a single selector property. |
void |
IBaseDocumentModule.setExternalFolder(IResource resource,
String propertyName,
IFolder folder)
Sets a
IFolder to a single selector property. |
void |
IBaseWorkflowModule.setExternalGroup(IResource resource,
String propertyName,
IGroup group)
Sets a
IGroup to a single selector property. |
void |
IBaseDocumentModule.setExternalGroup(IResource resource,
String propertyName,
IGroup group)
Sets a
IGroup to a single selector property. |
void |
IBaseWorkflowModule.setExternalLibrary(IResource resource,
String propertyName,
ILibrary library)
Sets a
ILibrary to a single selector property. |
void |
IBaseDocumentModule.setExternalLibrary(IResource resource,
String propertyName,
ILibrary library)
Sets a
ILibrary to a single selector property. |
void |
IBaseWorkflowModule.setExternalLocalization(IResource resource,
String propertyName,
ILocalization localization)
Sets a
ILocalization to a single selector property. |
void |
IBaseDocumentModule.setExternalLocalization(IResource resource,
String propertyName,
ILocalization localization)
Sets a
ILocalization to a single selector property. |
void |
IBaseWorkflowModule.setExternalOrganization(IResource resource,
String propertyName,
IOrganization organization)
Sets a
IOrganization to a single selector property. |
void |
IBaseDocumentModule.setExternalOrganization(IResource resource,
String propertyName,
IOrganization organization)
Sets a
IOrganization to a single selector property. |
void |
IBaseWorkflowModule.setExternalUser(IResource resource,
String propertyName,
IUser user)
Sets a
IUser to a single selector property. |
void |
IBaseDocumentModule.setExternalUser(IResource resource,
String propertyName,
IUser user)
Sets a
IUser to a single selector property. |
void |
IBaseDocumentModule.setList(IResource resource,
String propertyName,
Collection values)
Sets the list of available values to a list property.
|
void |
IBaseWorkflowModule.setList(IResource resource,
String propertyName,
Collection<? extends IOptionList.IOption> values)
Sets the list of available values to a list property.
|
void |
IBaseWorkflowModule.setValue(IResource resource,
String propertyName,
Object value)
Sets a value to a property.
|
void |
IBaseDocumentModule.setValue(IResource resource,
String propertyName,
Object value)
Sets a value to a property.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ILockSupport |
Modifier and Type | Method and Description |
---|---|
IResource |
ViewItem.getResource() |
protected IResource |
BaseViewExtension.getResource()
Retrieves the container resource.
|
Modifier and Type | Field and Description |
---|---|
protected IResource |
ViewItemImpl.resourceDocument |
Modifier and Type | Method and Description |
---|---|
IResource |
ViewItemImpl.getResource() |
Modifier and Type | Method and Description |
---|---|
IResource |
BaseResourceDefinitionExtension.getResource() |
Copyright © 2022 Visiativ. All rights reserved.