Package com.mendix.extensibility
Interface Extensibility
public interface Extensibility
Provides access to extensibility-related operations for custom blob documents.
-
Method Summary
Modifier and TypeMethodDescriptiongetCustomDocumentByFullName(String fullName) Returns the custom blob document with the full, qualified name.getCustomDocumentById(UUID documentId) Returns the custom blob document with the given ID.getCustomDocumentsOfType(String customDocumentType) Returns documents of the specified custom document type.
-
Method Details
-
getCustomDocumentById
Returns the custom blob document with the given ID.- Parameters:
documentId- The ID of the document- Returns:
- Information about the document or null when document is not found
-
getCustomDocumentByFullName
Returns the custom blob document with the full, qualified name.- Parameters:
fullName- The qualified name of the document- Returns:
- Information about the document or null when document is not found
-
getCustomDocumentsOfType
Returns documents of the specified custom document type.- Parameters:
customDocumentType- The custom document type- Returns:
- List with information about the documents of the specified type
-