$AppWalker
- Object to get information about an applications structure.
- JavaDoc Link
//Get all datagroups of the application with the given GUID. $AppWalker.getDatagroupsFromApplication("ECCA7244BBDB793817D57ACC722ECE46CAF1593B")
$BCM
- Object to access the cache manager and the update sequence numbers (usn) of single objects.
- JavaDoc Link
//Get the usn of the given view page $BCM.getUsn("viewpage971CA7D9")
$Browser
- Object to get browser information.
- JavaDoc Link
//Get the user agent string of the accessing browser. $Browser.getUserAgentId()
$Codec
- Object to encode and decode string values.
- JavaDoc Link
$Codec.hexEncodeString("www.intrexx.com", "UTF-8") $Codec.hexDecodeString("7777772E696E74726578782E636F6D")
$DC
- Object to access a collection of data objects (e.g. the current data record).
- JavaDoc Link
//Get the rec id of the current data record as string. $DC.getRecId()
$DEBUG
- Debugging object for detailed inspection of single objects and elements.
- JavaDoc Link
//Get detailed information of the user object. $DEBUG.inspect($User)
$DataTransferCallable
- Object to access defined datatransfer jobs.
- JavaDoc Link
//Get the job history of the data transfer job with the given GUID. $DataTransferCallable.getJobsHistory("0460E20ACAC15EDDA0E9B62E1F815D5BFD3F9B8F")
$DbUtil
- Object to access database connections and to administrate transactions of database operations.
- JavaDoc Link
#set($conn = $DbUtil.getConnection("IxSysDb"))
$ExceptionUtil
- Object to throw exceptions.
- JavaDoc Link
$ExceptionUtil.throwException("java.io.FileNotFoundException", "The given file does not exist.")
Object for Microsoft Exchange (only in combination with Intrexx Media Gateway).
- $ExchangeCallable
- Callable for Exchange authentication
- JavaDoc Link
$ExchangeCallable.getRequiredFields().isPasswordRequired()
- $ExchangeConnectionCallable
- Callable for Exchange connections
- JavaDoc Link
$ExchangeConnectionCallable.getConnection()
- $ExchangeMailboxCallable
- Callable to access the mailbox of an Exchange user
- JavaDoc Link
//Get the out of office message of the logged in Exchange user. $ExchangeMailboxCallable.getOutOfOfficeMessage()
- $ExchangeMessageCallable
- Callable to access message objects
- JavaDoc Link
//Save the message with id $strMessageId in format eml at $strDestinationPath. $ExchangeMessageCallable.saveMessageAsEML($strMessageId, $strDestinationPath)
- $ExchangeItemCallable
- Callable to access Exchange objects
- JavaDoc Link
//Save attachments of item with id $strMessageId at $strDestinationPath. $ExchangeItemCallable.saveAttachment($strMessageId, $strDestinationPath)
- $ExchangeUserMailboxCallable
- Callable for mailbox information of an Exchange user.
- JavaDoc Link
$ExchangeUserMailboxCallable.getMailboxInfo()
$Factory
- Create or access objects (e.g. users), without beeing predefined in velocity context.
- JavaDoc Link
$FileHelper
- Object for file operations like inserting a file into an Intrexx datagroup.
- JavaDoc Link
//Deletes the file from the datafield defined by the GUID //and from the record defined with RecId 1. $FileHelper.deleteFileFromIntrexx($ProcessingContext, "079A397D11EE732857CD1017C3AC6A55D0D112DA", "1")
$FramesetHelper
- Object to build a new URL based on the current request and a list of additional parameters.
- JavaDoc Link
$Loader
- Processes incoming requests. E.g. it enables access to the current database connection.
- JavaDoc Link
$Portal
- Object to access portal properties (e.g.: name).
- JavaDoc Link
- Access the organization structure of a portal.
$Portal.getOrgStructure()
- JavaDoc Link
$RenderingContext
- Object to access the current default rendering properties of a portal.
- JavaDoc Link
$defaultLanguage
- Default language of the portal.
$lang
- Current language of the portal.
$layout
- Name of the currently used layout.