Which statement is true about the object model?
A. dmr_content is not a sub-type of dm_sysobject although sysobject contents are stored asdmr_content objects.
B. dm_acl objects are stored in the System cabinet.
C. Not all sysobjects can have associated permissions.
D. Virtual documents are objects of type dm_relation that describe a parent/child relationshipbetween objects.
Which specific object type in the repository does the IDfTypedObject interface represent?
A. dm_dd_info
B. dmi_dd_type_info
C. dm_type
D. none
Which code statements would create a new folder (assuming valid objects and variables)?
A. IDfFolder folder = (IDfFolder)session.newObject("dm_folder");folder.setFolderName( objectName );folder.link (filePath ) ;folder.save();
B. IDfFolder folder = (IDfFolder)session.newObject("dm_folder");folder.save();
C. IDfFolder folder = (IDfFolder)session.newObject("dm_folder");folder.setObjectName( objectName );folder.link(filePath ) ;
D. IDfFolder folder = (IDfFolder)session.newObject("dm_folder");folder.setObjectName( objectName );folder.save();
What is the result of executing the following code? (Assume that all variables and constants are valid.)
A. no records
B. all dm_document objects in the repository
C. current versions of all dm_document objects in the repository
D. An exception is thrown as no attributes have been specified in the select clause.
Which method properly executes a query and returns the appropriate results. Assume you are developing a UI tree control in a web application to display a list of cabinets. The list of cabinets is generally static. Given the below code snippet: Which value for queryType should be used to achieve the maximum performance?
A. IDfQuery.DF_READ_QUERY
B. IDfQuery.DF_QUERY
C. IDfQuery.DF_CACHE_QUERY
D. IDfQuery.DF_EXECREAD_QUERY
What does the following code do?
A. removes all versions of an object
B. removes only the current version regardless of the version selected
C. removes the exact object relating to the given object ID
D. It does nothing as sysObj.save() has not been called.
Given the following SBO method (assume all variables are valid and createFolder() method exist): If the call to this SBO method is within a transaction, what is wrong with the code?
A. commitTransaction() should not be called from within an SBO with a transaction alreadyactive.
B. The SBO method should call its own beginTransaction() first.
C. abortTransaction() is missing in the catch() block.
D. Nothing is wrong.
User "docuser" has READ permission in an ACL. Which method from the IDfACL interface must be used to revoke the permission to "docuser"?
A. revoke("docuser", IDfACL.DF_PERMIT_READ)
B. grant("docuser", IDfACL.DF_PERMIT_NONE, null)
C. revokePermit("docuser", IDfACL.DF_PERMIT_READ)
D. removePermit("docuser", IDfACL.DF_PERMIT_READ)
Which interface is used to generate the repository tickets for other users?
A. IDfClient
B. IDfAdminClient
C. IDfSession
D. IDfPermit
An XML transformation is performed in the following code: Assuming the above code executes successfully, what will happen to the transformed HTML document?
A. It is added as a rendition to the xml document.
B. It is created on the local file system.
C. It replaces the xmlDoc's content.
D. It is imported as a new document.