Where are the credentials located for the BOF's client dynamic delivery mechanism?
A. dfc.properties
B. dmcl.ini
C. bof.properties
D. dbor.properties
Given the following architecture: To disable full-text search for end users of Webtop, on which computer should you update the dfc.properties file?
A. server1 only
B. app1 only
C. both server1 and local1
D. both app1 and local1
Which statements are required to create a new document object and link it to the Temp cabinet?
A. IDfDocument newDoc = (IDfDocument)session.newObject("dm_document");newDoc.link("/Temp");newDoc.save();
B. IDfDocument newDoc = (IDfDocument)session.newObject("dm_document");newDoc.linkCabinet("/Temp");newDoc.save();
C. IDfDocument newDoc = (IDfDocument)session.newObject("dm_document");newDoc.link(session.getFolderByPath("/Temp")); newDoc.save();
D. IDfDocument newDoc = (IDfDocument)session.newObject("dm_document");newDoc.link(session.getIdByQualification("dm_c abinet where folder('/Temp')));newDoc.save();
Which statement is used to retrieve the current version of a dm_document object that has 2 versions, given its chronicle id chronicle_id?
A. getObject(chronicle_id)
B. getObjectByQualification("dm_document (all) where r_object_id = '" + chronicle_id + "'")
C. getObjectByQualification("dm_document where i_chronicle_id = '" + chronicle_id + "'")
D. getObjectByQualification("select r_object_id from dm_document (all) wherei_chronicle_id = '" + chronicle_id + "'")
What is the default behavior when you add a directory from the file system to an import operation?
A. The directory will be imported by itself.
B. The directory and all documents it contains will be importeD.
C. The directory and all files and subdirectories will be importeD.
D. It will result in an error.
You have a repository with several million documents. The repository uses public ACLs to assign security for each division in an organization. What is the most efficient way to give read access to USER A for a batch of 100,000 documents while maintaining existing security on individual documents?
A. execute update dql to add USER A to each document
B. grant USER A READ permissions using IDfSysObject.grant()
C. add USER A to r_accessor_name for each acl that is referenced in the batch ofdocuments
D. create a new acl that gives USER A read permit and assign that acl to the batch ofdocuments
Given the following permissions on a document: How do you update the permissions to deny access to group_a?
A. execute IDfSysObject.revoke("group_a")
B. execute IDfSysObject.truncate("group_a")
C. execute IDfSysObject.setGroupName("group_a") and executeIDfSysObject.setGroupPermit(0)
D. execute IDfSysObject.truncate("r_accessor_name") and executeIDfSysObject.truncate("r_accessor_permit")
Which interface is used to generate the repository tickets for other users?
A. IDfClient
B. IDfAdminClient
C. IDfSession
D. IDfPermit
Which statement is true about the destinationObject parameter in the method IDfXMLTransformNode.setDestination(Object destinationObject)?
A. If the value is set to null, the transformed document will be added as a new rendition tothe input document.
B. If the value is set to an IDfImportOperation, the transformed document will be importedas a new rendition.
C. It can be one of the following types: IDfFile, OutputStream, Writer, IDfImportOperation,or IDfSysObject.
D. If the value is set to an IDfSysObject, the transformed document will be added as a newversion to that IDfSysObject.
What is wrong with the following log4j.properties settings?
A. DEBUG is not a valid logging level.
B. The appender name is incorrect in the first line.
C. MaxFileSize exceeds the Log4j maximum file size.
D. Log4j cannot include the date in the information output to the log file.