├── .editorConfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── README.md ├── ide-config ├── eclipse │ ├── alfresco-java-profile.xml │ ├── alfresco-javascript-profile.xml │ └── rm.eclipse.importorder └── intellij │ └── RM-IntelliJ-settings.jar ├── l10n.properties ├── license ├── alfresco_community │ ├── header.txt │ └── license.txt ├── alfresco_enterprise │ ├── header.txt │ └── license.txt ├── description.ftl └── licenses.properties ├── pom.xml ├── rm-benchmark ├── .gitignore ├── README ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── alfresco │ │ │ └── bm │ │ │ └── dataload │ │ │ ├── LoadSingleComponent.java │ │ │ ├── RMAbstractLoadComponent.java │ │ │ ├── RMBaseEventProcessor.java │ │ │ ├── RMEventConstants.java │ │ │ └── rm │ │ │ ├── exceptions │ │ │ ├── DuplicateRecordException.java │ │ │ ├── EventAlreadyScheduledException.java │ │ │ └── RecordNotFoundException.java │ │ │ ├── fileplan │ │ │ ├── ScheduleFilePlanLoaders.java │ │ │ └── ScheduleRecordLoaders.java │ │ │ ├── records │ │ │ ├── DeclareInPlaceRecords.java │ │ │ ├── ScheduleFilingUnfiledRecords.java │ │ │ └── ScheduleInPlaceRecordLoaders.java │ │ │ ├── role │ │ │ └── RMRole.java │ │ │ ├── services │ │ │ ├── BaseMongoService.java │ │ │ ├── ExecutionState.java │ │ │ ├── ExtendedFileFolderService.java │ │ │ ├── RecordContext.java │ │ │ ├── RecordData.java │ │ │ └── RecordService.java │ │ │ ├── site │ │ │ ├── CreateRMSite.java │ │ │ ├── CreateRMSiteMember.java │ │ │ ├── CreateRMSiteMembers.java │ │ │ ├── PrepareRMSite.java │ │ │ └── PrepareRMSiteMembers.java │ │ │ └── unfiled │ │ │ ├── ScheduleUnfiledRecordFolderLoaders.java │ │ │ └── ScheduleUnfiledRecordLoaders.java │ ├── resources │ │ └── config │ │ │ ├── defaults │ │ │ └── dataload.properties │ │ │ ├── spring │ │ │ └── test-context.xml │ │ │ └── startup │ │ │ └── app.properties │ └── webapp │ │ └── WEB-INF │ │ └── web.xml │ └── test │ ├── java │ └── org │ │ └── alfresco │ │ └── bm │ │ └── dataload │ │ ├── LoadSingleComponentUnitTest.java │ │ └── rm │ │ ├── fileplan │ │ ├── ScheduleFilePlanLoadersUnitTest.java │ │ └── ScheduleRecordLoadersUnitTest.java │ │ ├── records │ │ ├── DeclareInPlaceRecordsUnitTest.java │ │ ├── ScheduleFilingUnfiledRecordsUnitTest.java │ │ └── ScheduleInPlaceRecordLoadersUnitTest.java │ │ ├── service │ │ └── RecordServiceTest.java │ │ ├── site │ │ ├── CreateRMSiteMemberUnitTest.java │ │ ├── CreateRMSiteMembersUnitTest.java │ │ ├── CreateRMSiteUnitTest.java │ │ ├── PrepareRMSiteMembersUnitTest.java │ │ └── PrepareRMSiteUnitTest.java │ │ ├── unfiled │ │ ├── ScheduleUnfiledRecordFolderLoadersUnitTest.java │ │ └── ScheduleUnfiledRecordLoadersUnitTest.java │ │ └── utils │ │ ├── FileUnfiledRecordUnitTest.java │ │ ├── LoadRecordFolderUnitTest.java │ │ ├── LoadRecordUnitTest.java │ │ ├── LoadRootCategoryUnitTest.java │ │ ├── LoadRootUnfiledRecordFolderUnitTest.java │ │ ├── LoadSubCategoryUnitTest.java │ │ ├── LoadUnfiledRecordFolderUnitTest.java │ │ ├── LoadUnfiledRecordUnitTest.java │ │ └── RMBaseEventProcessorUnitTest.java │ └── resources │ └── testng.xml ├── rm-community ├── .editorConfig ├── .jshintrc ├── LICENSE.txt ├── documentation │ ├── PatchService.md │ ├── README.md │ ├── build │ │ ├── README.md │ │ └── resource │ │ │ ├── build.png │ │ │ └── build.puml │ ├── destruction │ │ ├── README.md │ │ └── resource │ │ │ ├── class │ │ │ ├── destruction-class.png │ │ │ └── destruction-class.puml │ │ │ └── sequence │ │ │ ├── destruction-sequence.png │ │ │ └── destruction-sequence.puml │ ├── overview.md │ ├── resource │ │ ├── class │ │ │ ├── governance-services.png │ │ │ └── governance-services.puml │ │ ├── component │ │ │ ├── ig-component.png │ │ │ └── ig-component.puml │ │ └── image │ │ │ └── CapabilitiesAndRoles.png │ ├── security │ │ ├── extendedPermissionService.md │ │ └── rolesAndCapabilities.md │ └── versionRecords │ │ ├── README.md │ │ └── RecordedVersions.png ├── pom.xml ├── rm-community-repo │ ├── .env │ ├── .maven-dockerignore │ ├── Dockerfile │ ├── config │ │ └── alfresco │ │ │ ├── extension │ │ │ └── subsystems │ │ │ │ └── imap │ │ │ │ └── default │ │ │ │ └── default │ │ │ │ └── rm-imap-server-context.xml │ │ │ ├── module │ │ │ └── org_alfresco_module_rm │ │ │ │ ├── action-context.xml │ │ │ │ ├── alfresco-global.properties │ │ │ │ ├── audit │ │ │ │ └── rm-audit.xml │ │ │ │ ├── bootstrap │ │ │ │ ├── RMDataDictionaryBootstrap.xml │ │ │ │ ├── content │ │ │ │ │ ├── notify-records-due-for-review-email.ftl │ │ │ │ │ ├── onCreate_supersedes.js │ │ │ │ │ ├── record-rejected-email.ftl │ │ │ │ │ ├── record-superseded-email.ftl │ │ │ │ │ ├── recordsCustomModel.xml │ │ │ │ │ ├── rmEventConfigBootstrap.json │ │ │ │ │ └── rma_isClosed.js │ │ │ │ ├── report │ │ │ │ │ ├── report_rmr_destructionReport.html.ftl │ │ │ │ │ ├── report_rmr_holdReport.html.ftl │ │ │ │ │ └── report_rmr_transferReport.html.ftl │ │ │ │ └── site │ │ │ │ │ ├── surf-config.xml │ │ │ │ │ └── surf-config │ │ │ │ │ ├── content0.bin │ │ │ │ │ ├── content1.bin │ │ │ │ │ ├── content2.bin │ │ │ │ │ ├── content3.bin │ │ │ │ │ ├── content4.bin │ │ │ │ │ └── content5.bin │ │ │ │ ├── capability │ │ │ │ ├── groups │ │ │ │ │ └── rm-capability-groups-context.xml │ │ │ │ ├── rm-capabilities-audit-context.xml │ │ │ │ ├── rm-capabilities-condition-context.xml │ │ │ │ ├── rm-capabilities-config-context.xml │ │ │ │ ├── rm-capabilities-disposition-context.xml │ │ │ │ ├── rm-capabilities-event-context.xml │ │ │ │ ├── rm-capabilities-fileplan-context.xml │ │ │ │ ├── rm-capabilities-freeze-context.xml │ │ │ │ ├── rm-capabilities-group-context.xml │ │ │ │ ├── rm-capabilities-record-context.xml │ │ │ │ ├── rm-capabilities-recordfolder-context.xml │ │ │ │ ├── rm-capabilities-reference-context.xml │ │ │ │ ├── rm-capabilities-rule-context.xml │ │ │ │ └── rm-capabilities-security-context.xml │ │ │ │ ├── content-context.xml │ │ │ │ ├── dod5015 │ │ │ │ ├── DODExampleFilePlan.acp │ │ │ │ ├── DODExampleFilePlan.xml │ │ │ │ ├── dod5015-capabilities-classification-context.xml │ │ │ │ ├── dod5015-context.xml │ │ │ │ ├── dod5015Model.xml │ │ │ │ └── messages │ │ │ │ │ ├── dod5015-model.properties │ │ │ │ │ ├── dod5015-model_de.properties │ │ │ │ │ ├── dod5015-model_es.properties │ │ │ │ │ ├── dod5015-model_fr.properties │ │ │ │ │ ├── dod5015-model_it.properties │ │ │ │ │ ├── dod5015-model_ja.properties │ │ │ │ │ ├── dod5015-model_nb.properties │ │ │ │ │ ├── dod5015-model_nl.properties │ │ │ │ │ ├── dod5015-model_pt_BR.properties │ │ │ │ │ ├── dod5015-model_ru.properties │ │ │ │ │ ├── dod5015-model_zh_CN.properties │ │ │ │ │ ├── dod5015.properties │ │ │ │ │ ├── dod5015_de.properties │ │ │ │ │ ├── dod5015_es.properties │ │ │ │ │ ├── dod5015_fr.properties │ │ │ │ │ ├── dod5015_it.properties │ │ │ │ │ ├── dod5015_ja.properties │ │ │ │ │ ├── dod5015_nb.properties │ │ │ │ │ ├── dod5015_nl.properties │ │ │ │ │ ├── dod5015_pt_BR.properties │ │ │ │ │ ├── dod5015_ru.properties │ │ │ │ │ └── dod5015_zh_CN.properties │ │ │ │ ├── extended-repository-context.xml │ │ │ │ ├── log4j.properties │ │ │ │ ├── messages │ │ │ │ ├── action-service.properties │ │ │ │ ├── action-service_de.properties │ │ │ │ ├── action-service_es.properties │ │ │ │ ├── action-service_fr.properties │ │ │ │ ├── action-service_it.properties │ │ │ │ ├── action-service_ja.properties │ │ │ │ ├── action-service_nb.properties │ │ │ │ ├── action-service_nl.properties │ │ │ │ ├── action-service_pt_BR.properties │ │ │ │ ├── action-service_ru.properties │ │ │ │ ├── action-service_zh_CN.properties │ │ │ │ ├── actions.properties │ │ │ │ ├── actions_de.properties │ │ │ │ ├── actions_es.properties │ │ │ │ ├── actions_fr.properties │ │ │ │ ├── actions_it.properties │ │ │ │ ├── actions_ja.properties │ │ │ │ ├── actions_nb.properties │ │ │ │ ├── actions_nl.properties │ │ │ │ ├── actions_pt_BR.properties │ │ │ │ ├── actions_ru.properties │ │ │ │ ├── actions_zh_CN.properties │ │ │ │ ├── admin-service.properties │ │ │ │ ├── admin-service_de.properties │ │ │ │ ├── admin-service_es.properties │ │ │ │ ├── admin-service_fr.properties │ │ │ │ ├── admin-service_it.properties │ │ │ │ ├── admin-service_ja.properties │ │ │ │ ├── admin-service_nb.properties │ │ │ │ ├── admin-service_nl.properties │ │ │ │ ├── admin-service_pt_BR.properties │ │ │ │ ├── admin-service_ru.properties │ │ │ │ ├── admin-service_zh_CN.properties │ │ │ │ ├── audit-service.properties │ │ │ │ ├── audit-service_de.properties │ │ │ │ ├── audit-service_es.properties │ │ │ │ ├── audit-service_fr.properties │ │ │ │ ├── audit-service_it.properties │ │ │ │ ├── audit-service_ja.properties │ │ │ │ ├── audit-service_nb.properties │ │ │ │ ├── audit-service_nl.properties │ │ │ │ ├── audit-service_pt_BR.properties │ │ │ │ ├── audit-service_ru.properties │ │ │ │ ├── audit-service_zh_CN.properties │ │ │ │ ├── capability-service.properties │ │ │ │ ├── capability-service_de.properties │ │ │ │ ├── capability-service_es.properties │ │ │ │ ├── capability-service_fr.properties │ │ │ │ ├── capability-service_it.properties │ │ │ │ ├── capability-service_ja.properties │ │ │ │ ├── capability-service_nb.properties │ │ │ │ ├── capability-service_nl.properties │ │ │ │ ├── capability-service_pt_BR.properties │ │ │ │ ├── capability-service_ru.properties │ │ │ │ ├── capability-service_zh_CN.properties │ │ │ │ ├── dataset-service.properties │ │ │ │ ├── dataset-service_de.properties │ │ │ │ ├── dataset-service_es.properties │ │ │ │ ├── dataset-service_fr.properties │ │ │ │ ├── dataset-service_it.properties │ │ │ │ ├── dataset-service_ja.properties │ │ │ │ ├── dataset-service_nb.properties │ │ │ │ ├── dataset-service_nl.properties │ │ │ │ ├── dataset-service_pt_BR.properties │ │ │ │ ├── dataset-service_ru.properties │ │ │ │ ├── dataset-service_zh_CN.properties │ │ │ │ ├── hold-service.properties │ │ │ │ ├── hold-service_de.properties │ │ │ │ ├── hold-service_es.properties │ │ │ │ ├── hold-service_fr.properties │ │ │ │ ├── hold-service_it.properties │ │ │ │ ├── hold-service_ja.properties │ │ │ │ ├── hold-service_nb.properties │ │ │ │ ├── hold-service_nl.properties │ │ │ │ ├── hold-service_pt_BR.properties │ │ │ │ ├── hold-service_ru.properties │ │ │ │ ├── hold-service_zh_CN.properties │ │ │ │ ├── notification-service.properties │ │ │ │ ├── notification-service_de.properties │ │ │ │ ├── notification-service_es.properties │ │ │ │ ├── notification-service_fr.properties │ │ │ │ ├── notification-service_it.properties │ │ │ │ ├── notification-service_ja.properties │ │ │ │ ├── notification-service_nb.properties │ │ │ │ ├── notification-service_nl.properties │ │ │ │ ├── notification-service_pt_BR.properties │ │ │ │ ├── notification-service_ru.properties │ │ │ │ ├── notification-service_zh_CN.properties │ │ │ │ ├── records-management-service.properties │ │ │ │ ├── records-management-service_de.properties │ │ │ │ ├── records-management-service_es.properties │ │ │ │ ├── records-management-service_fr.properties │ │ │ │ ├── records-management-service_it.properties │ │ │ │ ├── records-management-service_ja.properties │ │ │ │ ├── records-management-service_nb.properties │ │ │ │ ├── records-management-service_nl.properties │ │ │ │ ├── records-management-service_pt_BR.properties │ │ │ │ ├── records-management-service_ru.properties │ │ │ │ ├── records-management-service_zh_CN.properties │ │ │ │ ├── records-model.properties │ │ │ │ ├── records-model_de.properties │ │ │ │ ├── records-model_es.properties │ │ │ │ ├── records-model_fr.properties │ │ │ │ ├── records-model_it.properties │ │ │ │ ├── records-model_ja.properties │ │ │ │ ├── records-model_nb.properties │ │ │ │ ├── records-model_nl.properties │ │ │ │ ├── records-model_pt_BR.properties │ │ │ │ ├── records-model_ru.properties │ │ │ │ ├── records-model_zh_CN.properties │ │ │ │ ├── report-model.properties │ │ │ │ ├── report-model_de.properties │ │ │ │ ├── report-model_es.properties │ │ │ │ ├── report-model_fr.properties │ │ │ │ ├── report-model_it.properties │ │ │ │ ├── report-model_ja.properties │ │ │ │ ├── report-model_nb.properties │ │ │ │ ├── report-model_nl.properties │ │ │ │ ├── report-model_pt_BR.properties │ │ │ │ ├── report-model_ru.properties │ │ │ │ ├── report-model_zh_CN.properties │ │ │ │ ├── report-service.properties │ │ │ │ ├── report-service_de.properties │ │ │ │ ├── report-service_es.properties │ │ │ │ ├── report-service_fr.properties │ │ │ │ ├── report-service_it.properties │ │ │ │ ├── report-service_ja.properties │ │ │ │ ├── report-service_nb.properties │ │ │ │ ├── report-service_nl.properties │ │ │ │ ├── report-service_pt_BR.properties │ │ │ │ ├── report-service_ru.properties │ │ │ │ ├── report-service_zh_CN.properties │ │ │ │ ├── rm-actions.properties │ │ │ │ ├── rm-actions_de.properties │ │ │ │ ├── rm-actions_es.properties │ │ │ │ ├── rm-actions_fr.properties │ │ │ │ ├── rm-actions_it.properties │ │ │ │ ├── rm-actions_ja.properties │ │ │ │ ├── rm-actions_nb.properties │ │ │ │ ├── rm-actions_nl.properties │ │ │ │ ├── rm-actions_pt_BR.properties │ │ │ │ ├── rm-actions_ru.properties │ │ │ │ ├── rm-actions_zh_CN.properties │ │ │ │ ├── rm-events.properties │ │ │ │ ├── rm-events_de.properties │ │ │ │ ├── rm-events_es.properties │ │ │ │ ├── rm-events_fr.properties │ │ │ │ ├── rm-events_it.properties │ │ │ │ ├── rm-events_ja.properties │ │ │ │ ├── rm-events_nb.properties │ │ │ │ ├── rm-events_nl.properties │ │ │ │ ├── rm-events_pt_BR.properties │ │ │ │ ├── rm-events_ru.properties │ │ │ │ ├── rm-events_zh_CN.properties │ │ │ │ ├── rm-system.properties │ │ │ │ ├── rm-system_de.properties │ │ │ │ ├── rm-system_es.properties │ │ │ │ ├── rm-system_fr.properties │ │ │ │ ├── rm-system_it.properties │ │ │ │ ├── rm-system_ja.properties │ │ │ │ ├── rm-system_nb.properties │ │ │ │ ├── rm-system_nl.properties │ │ │ │ ├── rm-system_pt_BR.properties │ │ │ │ ├── rm-system_ru.properties │ │ │ │ ├── rm-system_zh_CN.properties │ │ │ │ ├── template.properties │ │ │ │ ├── template_de.properties │ │ │ │ ├── template_es.properties │ │ │ │ ├── template_fr.properties │ │ │ │ ├── template_it.properties │ │ │ │ ├── template_ja.properties │ │ │ │ ├── template_nb.properties │ │ │ │ ├── template_nl.properties │ │ │ │ ├── template_pt_BR.properties │ │ │ │ ├── template_ru.properties │ │ │ │ └── template_zh_CN.properties │ │ │ │ ├── model │ │ │ │ ├── recordableVersionModel.xml │ │ │ │ ├── recordsModel.xml │ │ │ │ ├── recordsPermissionModel.xml │ │ │ │ ├── reportModel.xml │ │ │ │ └── rm-model-security-context.xml │ │ │ │ ├── module-context.xml │ │ │ │ ├── module.properties │ │ │ │ ├── patch │ │ │ │ ├── rm-patch-context.xml │ │ │ │ ├── rm-patch-v20-context.xml │ │ │ │ ├── rm-patch-v21-context.xml │ │ │ │ ├── rm-patch-v22-context.xml │ │ │ │ ├── rm-patch-v23-context.xml │ │ │ │ ├── rm-patch-v24-context.xml │ │ │ │ ├── rm-patch-v32-context.xml │ │ │ │ ├── rm-patch-v33-context.xml │ │ │ │ └── rm-patch-v35-context.xml │ │ │ │ ├── query │ │ │ │ ├── rm-common-SqlMap.xml │ │ │ │ ├── rm-common-SqlMapConfig.xml │ │ │ │ └── rm-query-context.xml │ │ │ │ ├── rm-action-context.xml │ │ │ │ ├── rm-audit-context.xml │ │ │ │ ├── rm-capabilities-context.xml │ │ │ │ ├── rm-deprecated-context.xml │ │ │ │ ├── rm-disposition-properties-context.xml │ │ │ │ ├── rm-id-context.xml │ │ │ │ ├── rm-job-context.xml │ │ │ │ ├── rm-model-context.xml │ │ │ │ ├── rm-public-rest-context.xml │ │ │ │ ├── rm-public-services-security-context.xml │ │ │ │ ├── rm-report-context.xml │ │ │ │ ├── rm-service-context.xml │ │ │ │ ├── rm-ui-evaluators-context.xml │ │ │ │ ├── rm-version-context.xml │ │ │ │ ├── rm-webscript-context.xml │ │ │ │ ├── rm-workflow-context.xml │ │ │ │ ├── security │ │ │ │ ├── rm-default-roles-bootstrap.json │ │ │ │ ├── rm-method-security-context.xml │ │ │ │ ├── rm-method-security.properties │ │ │ │ └── rm-policy-context.xml │ │ │ │ └── version.properties │ │ │ ├── templates │ │ │ └── webscripts │ │ │ │ └── org │ │ │ │ └── alfresco │ │ │ │ ├── repository │ │ │ │ ├── dictionary │ │ │ │ │ ├── rm-classes.get.desc.xml │ │ │ │ │ ├── rm-classes.get.json.ftl │ │ │ │ │ ├── rm-properties.get.desc.xml │ │ │ │ │ └── rm-properties.get.json.ftl │ │ │ │ ├── roles │ │ │ │ │ ├── rm-authorities.delete.desc.xml │ │ │ │ │ ├── rm-authorities.delete.json.ftl │ │ │ │ │ ├── rm-authorities.post.desc.xml │ │ │ │ │ ├── rm-authorities.post.json.ftl │ │ │ │ │ ├── rm-dynamicauthorities.get.desc.xml │ │ │ │ │ └── rm-dynamicauthorities.get.json.ftl │ │ │ │ ├── rule │ │ │ │ │ ├── rm-actionconditiondefinitions.get.desc.xml │ │ │ │ │ ├── rm-actionconditiondefinitions.get.json.ftl │ │ │ │ │ ├── rm-actiondefinitions.get.desc.xml │ │ │ │ │ └── rm-actiondefinitions.get.json.ftl │ │ │ │ ├── schedules │ │ │ │ │ ├── rm-updaterecordschedule.get.desc.xml │ │ │ │ │ └── rm-updaterecordschedule.get.json.ftl │ │ │ │ ├── substitutionsuggestions │ │ │ │ │ ├── rm-substitutionsuggestions.get.desc.xml │ │ │ │ │ └── rm-substitutionsuggestions.get.json.ftl │ │ │ │ └── version │ │ │ │ │ ├── rm-version.get.desc.xml │ │ │ │ │ ├── rm-version.get.js │ │ │ │ │ └── rm-version.get.json.ftl │ │ │ │ ├── rma │ │ │ │ ├── admin │ │ │ │ │ ├── emailmap.delete.desc.xml │ │ │ │ │ ├── emailmap.delete.json.ftl │ │ │ │ │ ├── emailmap.get.desc.xml │ │ │ │ │ ├── emailmap.get.json.ftl │ │ │ │ │ ├── emailmap.lib.ftl │ │ │ │ │ ├── emailmap.post.desc.xml │ │ │ │ │ ├── emailmap.post.json.ftl │ │ │ │ │ ├── emailmapkeys.get.desc.xml │ │ │ │ │ ├── emailmapkeys.get.json.ftl │ │ │ │ │ ├── rmconstraint │ │ │ │ │ │ ├── rmconstraint-utils.js │ │ │ │ │ │ ├── rmconstraint.delete.desc.xml │ │ │ │ │ │ ├── rmconstraint.delete.js │ │ │ │ │ │ ├── rmconstraint.delete.json.ftl │ │ │ │ │ │ ├── rmconstraint.get.desc.xml │ │ │ │ │ │ ├── rmconstraint.get.js │ │ │ │ │ │ ├── rmconstraint.get.json.ftl │ │ │ │ │ │ ├── rmconstraint.lib.ftl │ │ │ │ │ │ ├── rmconstraint.put.desc.xml │ │ │ │ │ │ ├── rmconstraint.put.json.ftl │ │ │ │ │ │ ├── rmconstraint.put.json.js │ │ │ │ │ │ ├── rmconstraint.put.properties │ │ │ │ │ │ ├── rmconstraint.put_de.properties │ │ │ │ │ │ ├── rmconstraint.put_es.properties │ │ │ │ │ │ ├── rmconstraint.put_fr.properties │ │ │ │ │ │ ├── rmconstraint.put_it.properties │ │ │ │ │ │ ├── rmconstraint.put_ja.properties │ │ │ │ │ │ ├── rmconstraint.put_nb.properties │ │ │ │ │ │ ├── rmconstraint.put_nl.properties │ │ │ │ │ │ ├── rmconstraint.put_pt_BR.properties │ │ │ │ │ │ ├── rmconstraint.put_ru.properties │ │ │ │ │ │ ├── rmconstraint.put_zh_CN.properties │ │ │ │ │ │ ├── rmconstraints.get.desc.xml │ │ │ │ │ │ ├── rmconstraints.get.js │ │ │ │ │ │ ├── rmconstraints.get.json.ftl │ │ │ │ │ │ ├── rmconstraints.post.desc.xml │ │ │ │ │ │ ├── rmconstraints.post.json.ftl │ │ │ │ │ │ ├── rmconstraints.post.json.js │ │ │ │ │ │ ├── rmconstraints.post.properties │ │ │ │ │ │ ├── rmconstraints.post_de.properties │ │ │ │ │ │ ├── rmconstraints.post_es.properties │ │ │ │ │ │ ├── rmconstraints.post_fr.properties │ │ │ │ │ │ ├── rmconstraints.post_it.properties │ │ │ │ │ │ ├── rmconstraints.post_ja.properties │ │ │ │ │ │ ├── rmconstraints.post_nb.properties │ │ │ │ │ │ ├── rmconstraints.post_nl.properties │ │ │ │ │ │ ├── rmconstraints.post_pt_BR.properties │ │ │ │ │ │ ├── rmconstraints.post_ru.properties │ │ │ │ │ │ ├── rmconstraints.post_zh_CN.properties │ │ │ │ │ │ └── values │ │ │ │ │ │ │ ├── rmconstraint.get.desc.xml │ │ │ │ │ │ │ ├── rmconstraint.get.js │ │ │ │ │ │ │ ├── rmconstraint.get.json.ftl │ │ │ │ │ │ │ ├── rmconstraint.post.desc.xml │ │ │ │ │ │ │ ├── rmconstraint.post.json.ftl │ │ │ │ │ │ │ ├── rmconstraint.post.json.js │ │ │ │ │ │ │ ├── rmconstraintvalue.delete.desc.xml │ │ │ │ │ │ │ ├── rmconstraintvalue.delete.js │ │ │ │ │ │ │ ├── rmconstraintvalue.delete.json.ftl │ │ │ │ │ │ │ ├── rmconstraintvalue.get.desc.xml │ │ │ │ │ │ │ ├── rmconstraintvalue.get.js │ │ │ │ │ │ │ └── rmconstraintvalue.get.json.ftl │ │ │ │ │ ├── rmevent │ │ │ │ │ │ ├── rmevent.delete.desc.xml │ │ │ │ │ │ ├── rmevent.delete.json.ftl │ │ │ │ │ │ ├── rmevent.get.desc.xml │ │ │ │ │ │ ├── rmevent.get.json.ftl │ │ │ │ │ │ ├── rmevent.lib.ftl │ │ │ │ │ │ ├── rmevent.put.desc.xml │ │ │ │ │ │ ├── rmevent.put.json.ftl │ │ │ │ │ │ ├── rmevents.get.desc.xml │ │ │ │ │ │ ├── rmevents.get.json.ftl │ │ │ │ │ │ ├── rmevents.post.desc.xml │ │ │ │ │ │ ├── rmevents.post.json.ftl │ │ │ │ │ │ ├── rmeventtypes.get.desc.xml │ │ │ │ │ │ └── rmeventtypes.get.json.ftl │ │ │ │ │ └── rmrole │ │ │ │ │ │ ├── rmrole.delete.desc.xml │ │ │ │ │ │ ├── rmrole.delete.json.ftl │ │ │ │ │ │ ├── rmrole.get.desc.xml │ │ │ │ │ │ ├── rmrole.get.json.ftl │ │ │ │ │ │ ├── rmrole.lib.ftl │ │ │ │ │ │ ├── rmrole.put.desc.xml │ │ │ │ │ │ ├── rmrole.put.json.ftl │ │ │ │ │ │ ├── rmroles.get.desc.xml │ │ │ │ │ │ ├── rmroles.get.json.ftl │ │ │ │ │ │ ├── rmroles.post.desc.xml │ │ │ │ │ │ └── rmroles.post.json.ftl │ │ │ │ ├── applydodcertmodelfixes.get.desc.xml │ │ │ │ ├── applydodcertmodelfixes.get.json.ftl │ │ │ │ ├── applyfixmob1573.get.desc.xml │ │ │ │ ├── applyfixmob1573.get.json.ftl │ │ │ │ ├── bootstraptestdata.get.desc.xml │ │ │ │ ├── bootstraptestdata.get.json.ftl │ │ │ │ ├── capability │ │ │ │ │ ├── capabilities.get.desc.xml │ │ │ │ │ └── capabilities.get.json.ftl │ │ │ │ ├── customisable.get.desc.xml │ │ │ │ ├── customisable.get.json.ftl │ │ │ │ ├── custompropdefinition.delete.desc.xml │ │ │ │ ├── custompropdefinition.delete.json.ftl │ │ │ │ ├── custompropdefinition.post.desc.xml │ │ │ │ ├── custompropdefinition.post.json.ftl │ │ │ │ ├── custompropdefinition.put.desc.xml │ │ │ │ ├── custompropdefinition.put.json.ftl │ │ │ │ ├── custompropdefinitions.get.desc.xml │ │ │ │ ├── custompropdefinitions.get.json.ftl │ │ │ │ ├── customref.delete.desc.xml │ │ │ │ ├── customref.delete.json.ftl │ │ │ │ ├── customref.post.desc.xml │ │ │ │ ├── customref.post.json.ftl │ │ │ │ ├── customrefdefinition.post.desc.xml │ │ │ │ ├── customrefdefinition.post.json.ftl │ │ │ │ ├── customrefdefinition.put.desc.xml │ │ │ │ ├── customrefdefinition.put.json.ftl │ │ │ │ ├── customrefdefinitions.get.desc.xml │ │ │ │ ├── customrefdefinitions.get.json.ftl │ │ │ │ ├── customrefs.get.desc.xml │ │ │ │ ├── customrefs.get.json.ftl │ │ │ │ ├── dataset.post.desc.xml │ │ │ │ ├── dataset.post.json.ftl │ │ │ │ ├── datasets.get.desc.xml │ │ │ │ ├── datasets.get.json.ftl │ │ │ │ ├── dispositionactiondefinition.delete.desc.xml │ │ │ │ ├── dispositionactiondefinition.delete.json.ftl │ │ │ │ ├── dispositionactiondefinition.lib.ftl │ │ │ │ ├── dispositionactiondefinition.put.desc.xml │ │ │ │ ├── dispositionactiondefinition.put.json.ftl │ │ │ │ ├── dispositionactiondefinitions.post.desc.xml │ │ │ │ ├── dispositionactiondefinitions.post.json.ftl │ │ │ │ ├── dispositionlifecycle.get.desc.xml │ │ │ │ ├── dispositionlifecycle.get.json.ftl │ │ │ │ ├── dispositionproperties.get.desc.xml │ │ │ │ ├── dispositionproperties.get.json.ftl │ │ │ │ ├── dispositionschedule.get.desc.xml │ │ │ │ ├── dispositionschedule.get.json.ftl │ │ │ │ ├── dodcustomtypes.get.desc.xml │ │ │ │ ├── dodcustomtypes.get.json.ftl │ │ │ │ ├── export.post.desc.xml │ │ │ │ ├── export.post.html.status.ftl │ │ │ │ ├── fileplanreport.get.desc.xml │ │ │ │ ├── fileplanreport.get.js │ │ │ │ ├── fileplanreport.get.json.ftl │ │ │ │ ├── fileplanreport.lib.ftl │ │ │ │ ├── hold.post.desc.xml │ │ │ │ ├── hold.post.json.ftl │ │ │ │ ├── hold.put.desc.xml │ │ │ │ ├── hold.put.json.ftl │ │ │ │ ├── holds.get.desc.xml │ │ │ │ ├── holds.get.json.ftl │ │ │ │ ├── import.post.desc.xml │ │ │ │ ├── import.post.html.ftl │ │ │ │ ├── import.post.json.ftl │ │ │ │ ├── listofvalues.get.desc.xml │ │ │ │ ├── listofvalues.get.json.ftl │ │ │ │ ├── listofvalues.lib.ftl │ │ │ │ ├── recordmetadataaspects.get.desc.xml │ │ │ │ ├── recordmetadataaspects.get.json.ftl │ │ │ │ ├── relationship.delete.desc.xml │ │ │ │ ├── relationship.delete.json.ftl │ │ │ │ ├── relationshiplabels.get.desc.xml │ │ │ │ ├── relationshiplabels.get.json.ftl │ │ │ │ ├── relationships.get.desc.xml │ │ │ │ ├── relationships.get.json.ftl │ │ │ │ ├── rmaction.post.desc.xml │ │ │ │ ├── rmaction.post.json.ftl │ │ │ │ ├── rmauditlog.delete.desc.xml │ │ │ │ ├── rmauditlog.delete.json.ftl │ │ │ │ ├── rmauditlog.get.desc.xml │ │ │ │ ├── rmauditlog.lib.ftl │ │ │ │ ├── rmauditlog.post.desc.xml │ │ │ │ ├── rmauditlog.put.desc.xml │ │ │ │ ├── rmauditlog.put.json.ftl │ │ │ │ ├── rmauditlogstatus.get.desc.xml │ │ │ │ ├── rmauditlogstatus.get.json.ftl │ │ │ │ ├── rmconstraints.get.desc.xml │ │ │ │ ├── rmconstraints.get.json.ftl │ │ │ │ ├── rmpermissions.post.desc.xml │ │ │ │ ├── rmpermissions.post.json.ftl │ │ │ │ ├── rmpermissions.post.json.js │ │ │ │ ├── transfer.get.desc.xml │ │ │ │ ├── transferreport.get.desc.xml │ │ │ │ ├── transferreport.post.desc.xml │ │ │ │ ├── userrightsreport.get.desc.xml │ │ │ │ └── userrightsreport.get.json.ftl │ │ │ │ └── slingshot │ │ │ │ ├── documentlibrary-v2 │ │ │ │ ├── rm-doclist.get.desc.xml │ │ │ │ ├── rm-doclist.get.js │ │ │ │ ├── rm-doclist.get.json.ftl │ │ │ │ ├── rm-doclist.lib.js │ │ │ │ ├── rm-filters.lib.js │ │ │ │ ├── rm-node.get.desc.xml │ │ │ │ ├── rm-node.get.js │ │ │ │ ├── rm-node.get.json.ftl │ │ │ │ └── rm-parse-args.lib.js │ │ │ │ ├── documentlibrary │ │ │ │ ├── action │ │ │ │ │ ├── recorded-version-config.get.desc.xml │ │ │ │ │ ├── recorded-version-config.get.json.ftl │ │ │ │ │ ├── recorded-version-config.post.desc.xml │ │ │ │ │ ├── recorded-version-config.post.json.ftl │ │ │ │ │ ├── rm-copy-to.post.desc.xml │ │ │ │ │ ├── rm-copy-to.post.json.ftl │ │ │ │ │ ├── rm-copy-to.post.json.js │ │ │ │ │ ├── rm-link.post.desc.xml │ │ │ │ │ ├── rm-link.post.json.ftl │ │ │ │ │ ├── rm-link.post.json.js │ │ │ │ │ ├── rm-move-to.post.desc.xml │ │ │ │ │ ├── rm-move-to.post.json.ftl │ │ │ │ │ └── rm-move-to.post.json.js │ │ │ │ ├── rm-permissions.get.desc.xml │ │ │ │ ├── rm-permissions.get.js │ │ │ │ ├── rm-permissions.get.json.ftl │ │ │ │ ├── rm-savedsearches.get.desc.xml │ │ │ │ ├── rm-savedsearches.get.js │ │ │ │ ├── rm-savedsearches.get.json.ftl │ │ │ │ ├── rm-transfer.get.desc.xml │ │ │ │ ├── rm-transfer.get.js │ │ │ │ ├── rm-transfer.get.json.ftl │ │ │ │ ├── rm-treenode.get.desc.xml │ │ │ │ ├── rm-treenode.get.js │ │ │ │ └── rm-treenode.get.json.ftl │ │ │ │ ├── forms │ │ │ │ ├── metadata.get.desc.xml │ │ │ │ └── metadata.get.json.ftl │ │ │ │ ├── rmsearch │ │ │ │ ├── faceted │ │ │ │ │ ├── rmsearch.get.desc.xml │ │ │ │ │ ├── rmsearch.get.js │ │ │ │ │ ├── rmsearch.get.json.ftl │ │ │ │ │ └── rmsearch.lib.js │ │ │ │ ├── rmsavedsearches.delete.desc.xml │ │ │ │ ├── rmsavedsearches.delete.json.ftl │ │ │ │ ├── rmsavedsearches.get.desc.xml │ │ │ │ ├── rmsavedsearches.get.json.ftl │ │ │ │ ├── rmsavedsearches.post.desc.xml │ │ │ │ ├── rmsavedsearches.post.json.ftl │ │ │ │ ├── rmsearch.get.desc.xml │ │ │ │ ├── rmsearch.get.json.ftl │ │ │ │ ├── rmsearchproperties.get.desc.xml │ │ │ │ └── rmsearchproperties.get.json.ftl │ │ │ │ └── search │ │ │ │ └── live-search.lib.js │ │ │ └── workflow │ │ │ ├── requestInfo.bpmn20.xml │ │ │ ├── rm-workflow-messages.properties │ │ │ ├── rm-workflow-messages_de.properties │ │ │ ├── rm-workflow-messages_es.properties │ │ │ ├── rm-workflow-messages_fr.properties │ │ │ ├── rm-workflow-messages_it.properties │ │ │ ├── rm-workflow-messages_ja.properties │ │ │ ├── rm-workflow-messages_nb.properties │ │ │ ├── rm-workflow-messages_nl.properties │ │ │ ├── rm-workflow-messages_pt_BR.properties │ │ │ ├── rm-workflow-messages_ru.properties │ │ │ ├── rm-workflow-messages_zh_CN.properties │ │ │ └── rmWorkflowModel.xml │ ├── docker-compose.yml │ ├── pom.xml │ ├── source │ │ ├── compatibility │ │ │ └── org │ │ │ │ └── alfresco │ │ │ │ └── module │ │ │ │ ├── org_alfresco_module_dod5015 │ │ │ │ └── caveat │ │ │ │ │ └── RMListOfValuesConstraint.java │ │ │ │ └── org_alfresco_module_rm │ │ │ │ ├── CannotApplyConstraintMetadataException.java │ │ │ │ ├── CustomMetadataException.java │ │ │ │ ├── InvalidCustomAspectMetadataException.java │ │ │ │ ├── NotCustomisableMetadataException.java │ │ │ │ ├── PropertyAlreadyExistsMetadataException.java │ │ │ │ ├── RecordsManagementAdminService.java │ │ │ │ ├── RecordsManagementService.java │ │ │ │ ├── RecordsManagementServiceImpl.java │ │ │ │ ├── audit │ │ │ │ └── RecordsManagementAuditServiceDeprecated.java │ │ │ │ ├── caveat │ │ │ │ ├── PivotUtil.java │ │ │ │ ├── RMCaveatConfigComponent.java │ │ │ │ ├── RMCaveatConfigComponentImpl.java │ │ │ │ ├── RMCaveatConfigService.java │ │ │ │ ├── RMCaveatConfigServiceImpl.java │ │ │ │ ├── RMConstraintInfo.java │ │ │ │ ├── RMConstraintMessageKeys.java │ │ │ │ ├── RMListOfValuesConstraint.java │ │ │ │ ├── ScriptAuthority.java │ │ │ │ ├── ScriptConstraint.java │ │ │ │ ├── ScriptConstraintAuthority.java │ │ │ │ ├── ScriptConstraintValue.java │ │ │ │ └── ScriptRMCaveatConfigService.java │ │ │ │ ├── compatibility │ │ │ │ └── CompatibilityModel.java │ │ │ │ └── security │ │ │ │ ├── DeprecatedExtendedSecurityService.java │ │ │ │ ├── ExtendedReaderDynamicAuthority.java │ │ │ │ ├── ExtendedSecurityBaseDynamicAuthority.java │ │ │ │ ├── ExtendedWriterDynamicAuthority.java │ │ │ │ ├── FilePlanAuthenticationService.java │ │ │ │ ├── FilePlanAuthenticationServiceImpl.java │ │ │ │ ├── RecordsManagementSecurityService.java │ │ │ │ ├── RecordsManagementSecurityServiceImpl.java │ │ │ │ └── Role.java │ │ └── java │ │ │ └── org │ │ │ └── alfresco │ │ │ ├── module │ │ │ └── org_alfresco_module_rm │ │ │ │ ├── RecordsManagementPolicies.java │ │ │ │ ├── RecordsManagementServiceRegistry.java │ │ │ │ ├── RecordsManagementServiceRegistryImpl.java │ │ │ │ ├── action │ │ │ │ ├── AuditableActionExecuterAbstractBase.java │ │ │ │ ├── PropertySubActionExecuterAbstractBase.java │ │ │ │ ├── RMActionExecuterAbstractBase.java │ │ │ │ ├── RMDispositionActionExecuterAbstractBase.java │ │ │ │ ├── RecordsManagementAction.java │ │ │ │ ├── RecordsManagementActionCondition.java │ │ │ │ ├── RecordsManagementActionConditionDefinition.java │ │ │ │ ├── RecordsManagementActionConditionDefinitionImpl.java │ │ │ │ ├── RecordsManagementActionConditionEvaluatorAbstractBase.java │ │ │ │ ├── RecordsManagementActionDefinition.java │ │ │ │ ├── RecordsManagementActionDefinitionImpl.java │ │ │ │ ├── RecordsManagementActionResult.java │ │ │ │ ├── RecordsManagementActionService.java │ │ │ │ ├── RecordsManagementActionServiceImpl.java │ │ │ │ ├── ScheduledDispositionJob.java │ │ │ │ ├── constraint │ │ │ │ │ ├── CustomParameterConstraint.java │ │ │ │ │ ├── DispositionActionParameterConstraint.java │ │ │ │ │ ├── ManualEventParameterConstraint.java │ │ │ │ │ ├── RecordTypeParameterConstraint.java │ │ │ │ │ └── VersionParameterConstraint.java │ │ │ │ ├── dm │ │ │ │ │ ├── CreateRecordAction.java │ │ │ │ │ ├── DeclareAsVersionRecordAction.java │ │ │ │ │ ├── ExecuteScriptAction.java │ │ │ │ │ ├── HideRecordAction.java │ │ │ │ │ ├── MoveDmRecordAction.java │ │ │ │ │ ├── RecordActionUtils.java │ │ │ │ │ └── RecordableVersionConfigAction.java │ │ │ │ ├── evaluator │ │ │ │ │ ├── CapabilityConditionEvaluator.java │ │ │ │ │ ├── DelegateActionCondition.java │ │ │ │ │ ├── DispositionActionRelativePositions.java │ │ │ │ │ ├── HasDispositionActionEvaluator.java │ │ │ │ │ ├── IsKindEvaluator.java │ │ │ │ │ └── IsRecordTypeEvaluator.java │ │ │ │ └── impl │ │ │ │ │ ├── AddRecordTypeAction.java │ │ │ │ │ ├── ApplyCustomTypeAction.java │ │ │ │ │ ├── BroadcastDispositionActionDefinitionUpdateAction.java │ │ │ │ │ ├── CloseRecordFolderAction.java │ │ │ │ │ ├── CompleteEventAction.java │ │ │ │ │ ├── CopyMoveLinkFileToBaseAction.java │ │ │ │ │ ├── CopyToAction.java │ │ │ │ │ ├── CreateDispositionScheduleAction.java │ │ │ │ │ ├── CutOffAction.java │ │ │ │ │ ├── DeclareRecordAction.java │ │ │ │ │ ├── DelegateAction.java │ │ │ │ │ ├── DeleteHoldAction.java │ │ │ │ │ ├── DestroyAction.java │ │ │ │ │ ├── EditDispositionActionAsOfDateAction.java │ │ │ │ │ ├── EditHoldReasonAction.java │ │ │ │ │ ├── EditReviewAsOfDateAction.java │ │ │ │ │ ├── FileReportAction.java │ │ │ │ │ ├── FileToAction.java │ │ │ │ │ ├── FreezeAction.java │ │ │ │ │ ├── LinkToAction.java │ │ │ │ │ ├── MoveToAction.java │ │ │ │ │ ├── OpenRecordFolderAction.java │ │ │ │ │ ├── RejectAction.java │ │ │ │ │ ├── RelinquishHoldAction.java │ │ │ │ │ ├── RequestInfoAction.java │ │ │ │ │ ├── RetainAction.java │ │ │ │ │ ├── SplitEmailAction.java │ │ │ │ │ ├── TransferAction.java │ │ │ │ │ ├── TransferCompleteAction.java │ │ │ │ │ ├── UnCutoffAction.java │ │ │ │ │ ├── UndeclareRecordAction.java │ │ │ │ │ ├── UndoEventAction.java │ │ │ │ │ ├── UnfreezeAction.java │ │ │ │ │ └── UnlinkFromAction.java │ │ │ │ ├── admin │ │ │ │ ├── CannotApplyConstraintMetadataException.java │ │ │ │ ├── CustomMetadataException.java │ │ │ │ ├── InvalidCustomAspectMetadataException.java │ │ │ │ ├── NotCustomisableMetadataException.java │ │ │ │ ├── PropertyAlreadyExistsMetadataException.java │ │ │ │ ├── RecordsManagementAdminBase.java │ │ │ │ ├── RecordsManagementAdminService.java │ │ │ │ └── RecordsManagementAdminServiceImpl.java │ │ │ │ ├── audit │ │ │ │ ├── RecordsManagementAuditEntry.java │ │ │ │ ├── RecordsManagementAuditQueryParameters.java │ │ │ │ ├── RecordsManagementAuditService.java │ │ │ │ ├── RecordsManagementAuditServiceImpl.java │ │ │ │ ├── event │ │ │ │ │ ├── AddToHoldAuditEvent.java │ │ │ │ │ ├── AddToUserGroupAuditEvent.java │ │ │ │ │ ├── AuditEvent.java │ │ │ │ │ ├── CopyToAuditEvent.java │ │ │ │ │ ├── CreateHoldAuditEvent.java │ │ │ │ │ ├── CreateObjectAuditEvent.java │ │ │ │ │ ├── CreatePersonAuditEvent.java │ │ │ │ │ ├── CreateUserGroupAuditEvent.java │ │ │ │ │ ├── DeleteHoldAuditEvent.java │ │ │ │ │ ├── DeleteObjectAuditEvent.java │ │ │ │ │ ├── DeletePersonAuditEvent.java │ │ │ │ │ ├── DeleteUserGroupAuditEvent.java │ │ │ │ │ ├── FileToAuditEvent.java │ │ │ │ │ ├── HoldUtils.java │ │ │ │ │ ├── LinkToAuditEvent.java │ │ │ │ │ ├── MoveToAuditEvent.java │ │ │ │ │ ├── RecordableVersionPolicyAuditEvent.java │ │ │ │ │ ├── RemoveFromHoldAuditEvent.java │ │ │ │ │ ├── RemoveFromUserGroupAuditEvent.java │ │ │ │ │ ├── UpdateObjectAuditEvent.java │ │ │ │ │ └── UserGroupMembershipUtils.java │ │ │ │ └── extractor │ │ │ │ │ ├── AuthenticatedUserRolesDataExtractor.java │ │ │ │ │ ├── FilePlanIdentifierDataExtractor.java │ │ │ │ │ ├── FilePlanNodeRefPathDataExtractor.java │ │ │ │ │ └── NamePathDataExtractor.java │ │ │ │ ├── bootstrap │ │ │ │ ├── BootstrapImporterModuleComponent.java │ │ │ │ ├── ModuleCompatibilityComponent.java │ │ │ │ ├── RecordContributorsGroupBootstrapComponent.java │ │ │ │ └── RecordsManagementBootstrap.java │ │ │ │ ├── capability │ │ │ │ ├── AbstractCapability.java │ │ │ │ ├── Capability.java │ │ │ │ ├── CapabilityService.java │ │ │ │ ├── CapabilityServiceImpl.java │ │ │ │ ├── CompositeCapability.java │ │ │ │ ├── Group.java │ │ │ │ ├── GroupImpl.java │ │ │ │ ├── PolicyRegister.java │ │ │ │ ├── RMActionProxyFactoryBean.java │ │ │ │ ├── RMAfterInvocationProvider.java │ │ │ │ ├── RMEntryVoter.java │ │ │ │ ├── RMPermissionModel.java │ │ │ │ ├── RMSecurityCommon.java │ │ │ │ ├── declarative │ │ │ │ │ ├── AbstractCapabilityCondition.java │ │ │ │ │ ├── CapabilityCondition.java │ │ │ │ │ ├── DeclarativeCapability.java │ │ │ │ │ ├── DeclarativeCompositeCapability.java │ │ │ │ │ └── condition │ │ │ │ │ │ ├── AtLeastOneCondition.java │ │ │ │ │ │ ├── ClosedCapabilityCondition.java │ │ │ │ │ │ ├── CutoffCapabilityCondition.java │ │ │ │ │ │ ├── DeclaredCapabilityCondition.java │ │ │ │ │ │ ├── DestroyedCapabilityCondition.java │ │ │ │ │ │ ├── FailCapabilityCondition.java │ │ │ │ │ │ ├── FileableCapabilityCondition.java │ │ │ │ │ │ ├── FillingCapabilityCondition.java │ │ │ │ │ │ ├── FillingOnHoldContainerCapabilityCondition.java │ │ │ │ │ │ ├── FrozenCapabilityCondition.java │ │ │ │ │ │ ├── FrozenOrHoldCondition.java │ │ │ │ │ │ ├── HasAspectCapabilityCondition.java │ │ │ │ │ │ ├── HasDispositionDateCapabilityCondition.java │ │ │ │ │ │ ├── HasEventsCapabilityCondition.java │ │ │ │ │ │ ├── HoldCapabilityCondition.java │ │ │ │ │ │ ├── IsClassifiedCapabilityCondition.java │ │ │ │ │ │ ├── IsPropertySetCondition.java │ │ │ │ │ │ ├── IsRecordCategoryCondition.java │ │ │ │ │ │ ├── IsRecordCondition.java │ │ │ │ │ │ ├── IsRecordFolderCondition.java │ │ │ │ │ │ ├── IsScheduledCapabilityCondition.java │ │ │ │ │ │ ├── IsTransferAccessionCapabilityCondition.java │ │ │ │ │ │ ├── LastDispositionActionCondition.java │ │ │ │ │ │ ├── MayBeScheduledCapabilityCondition.java │ │ │ │ │ │ ├── MovableRecordFolderCapabilityCondition.java │ │ │ │ │ │ ├── RecordFiledCapabilityCondition.java │ │ │ │ │ │ ├── TransferredCapabilityCondition.java │ │ │ │ │ │ └── VitalRecordOrFolderCapabilityCondition.java │ │ │ │ ├── impl │ │ │ │ │ ├── ChangeOrDeleteReferencesCapability.java │ │ │ │ │ ├── CreateCapability.java │ │ │ │ │ ├── DeleteLinksCapability.java │ │ │ │ │ ├── EditNonRecordMetadataCapability.java │ │ │ │ │ ├── UpdateCapability.java │ │ │ │ │ └── ViewRecordsCapability.java │ │ │ │ └── policy │ │ │ │ │ ├── AbstractBasePolicy.java │ │ │ │ │ ├── AssocPolicy.java │ │ │ │ │ ├── ConfigAttributeDefinition.java │ │ │ │ │ ├── CreatePolicy.java │ │ │ │ │ ├── DeclarePolicy.java │ │ │ │ │ ├── DeletePolicy.java │ │ │ │ │ ├── MovePolicy.java │ │ │ │ │ ├── Policy.java │ │ │ │ │ ├── ReadPolicy.java │ │ │ │ │ ├── UpdatePolicy.java │ │ │ │ │ ├── UpdatePropertiesPolicy.java │ │ │ │ │ └── WriteContentPolicy.java │ │ │ │ ├── content │ │ │ │ ├── ContentDestructionComponent.java │ │ │ │ ├── EagerContentStoreCleaner.java │ │ │ │ └── cleanser │ │ │ │ │ ├── ContentCleanser.java │ │ │ │ │ └── ContentCleanser522022M.java │ │ │ │ ├── dataset │ │ │ │ ├── DataSet.java │ │ │ │ ├── DataSetBase.java │ │ │ │ ├── DataSetService.java │ │ │ │ └── DataSetServiceImpl.java │ │ │ │ ├── disposition │ │ │ │ ├── DispositionAction.java │ │ │ │ ├── DispositionActionDefinition.java │ │ │ │ ├── DispositionActionDefinitionImpl.java │ │ │ │ ├── DispositionActionImpl.java │ │ │ │ ├── DispositionSchedule.java │ │ │ │ ├── DispositionScheduleImpl.java │ │ │ │ ├── DispositionSelectionStrategy.java │ │ │ │ ├── DispositionService.java │ │ │ │ ├── DispositionServiceImpl.java │ │ │ │ ├── NextActionFromDisposition.java │ │ │ │ └── property │ │ │ │ │ └── DispositionProperty.java │ │ │ │ ├── dod5015 │ │ │ │ ├── DOD5015FilePlanTypeBootstrap.java │ │ │ │ ├── DOD5015Model.java │ │ │ │ └── model │ │ │ │ │ └── dod │ │ │ │ │ └── aspect │ │ │ │ │ └── DOD5015RecordAspect.java │ │ │ │ ├── email │ │ │ │ ├── CustomEmailMappingService.java │ │ │ │ ├── CustomEmailMappingServiceImpl.java │ │ │ │ ├── CustomMapping.java │ │ │ │ ├── CustomisableEmailMappingKeyBootstrap.java │ │ │ │ └── RFC822MetadataExtracter.java │ │ │ │ ├── event │ │ │ │ ├── EventCompletionDetails.java │ │ │ │ ├── OnReferenceCreateEventType.java │ │ │ │ ├── OnReferencedRecordActionedUpon.java │ │ │ │ ├── RecordsManagementEvent.java │ │ │ │ ├── RecordsManagementEventService.java │ │ │ │ ├── RecordsManagementEventServiceImpl.java │ │ │ │ ├── RecordsManagementEventType.java │ │ │ │ └── SimpleRecordsManagementEventTypeImpl.java │ │ │ │ ├── fileplan │ │ │ │ ├── FilePlanComponentKind.java │ │ │ │ ├── FilePlanService.java │ │ │ │ └── FilePlanServiceImpl.java │ │ │ │ ├── forms │ │ │ │ ├── RecordsManagementFormFilter.java │ │ │ │ ├── RecordsManagementNodeFormFilter.java │ │ │ │ └── RecordsManagementTypeFormFilter.java │ │ │ │ ├── freeze │ │ │ │ ├── FreezeService.java │ │ │ │ └── FreezeServiceImpl.java │ │ │ │ ├── hold │ │ │ │ ├── HoldService.java │ │ │ │ ├── HoldServiceImpl.java │ │ │ │ └── HoldServicePolicies.java │ │ │ │ ├── identifier │ │ │ │ ├── BasicIdentifierGenerator.java │ │ │ │ ├── IdentifierGenerator.java │ │ │ │ ├── IdentifierGeneratorBase.java │ │ │ │ ├── IdentifierService.java │ │ │ │ └── IdentifierServiceImpl.java │ │ │ │ ├── job │ │ │ │ ├── DispositionLifecycleJobExecuter.java │ │ │ │ ├── NotifyOfRecordsDueForReviewJobExecuter.java │ │ │ │ ├── PublishUpdatesJobExecuter.java │ │ │ │ ├── RecordsManagementJob.java │ │ │ │ ├── RecordsManagementJobExecuter.java │ │ │ │ └── publish │ │ │ │ │ ├── BasePublishExecutor.java │ │ │ │ │ ├── DispositionActionDefinitionPublishExecutor.java │ │ │ │ │ ├── PublishExecutor.java │ │ │ │ │ └── PublishExecutorRegistry.java │ │ │ │ ├── jscript │ │ │ │ ├── ScriptCapability.java │ │ │ │ ├── ScriptRecordsManagmentNode.java │ │ │ │ ├── ScriptRecordsManagmentService.java │ │ │ │ └── app │ │ │ │ │ ├── BaseEvaluator.java │ │ │ │ │ ├── JSONConversionComponent.java │ │ │ │ │ └── evaluator │ │ │ │ │ ├── CutoffEvaluator.java │ │ │ │ │ ├── EditRecordMetadataActionEvaluator.java │ │ │ │ │ ├── FolderOpenClosedEvaluator.java │ │ │ │ │ ├── FrozenEvaluator.java │ │ │ │ │ ├── HasAspectEvaluator.java │ │ │ │ │ ├── MultiParentEvaluator.java │ │ │ │ │ ├── NonElectronicEvaluator.java │ │ │ │ │ ├── SplitEmailActionEvaluator.java │ │ │ │ │ ├── TransferEvaluator.java │ │ │ │ │ ├── TrueEvaluator.java │ │ │ │ │ └── VitalRecordEvaluator.java │ │ │ │ ├── model │ │ │ │ ├── BaseBehaviourBean.java │ │ │ │ ├── CustomisableTypesBootstrap.java │ │ │ │ ├── RecordsManagementCustomModel.java │ │ │ │ ├── RecordsManagementModel.java │ │ │ │ ├── behaviour │ │ │ │ │ ├── AbstractDisposableItem.java │ │ │ │ │ └── RecordsManagementSearchBehaviour.java │ │ │ │ ├── compatibility │ │ │ │ │ └── DictionaryBootstrapPostProcessor.java │ │ │ │ ├── rma │ │ │ │ │ ├── aspect │ │ │ │ │ │ ├── AccendedAspect.java │ │ │ │ │ │ ├── CutoffAspect.java │ │ │ │ │ │ ├── DeclaredRecordAspect.java │ │ │ │ │ │ ├── DispositionLifecycleAspect.java │ │ │ │ │ │ ├── ExtendedSecurityAspect.java │ │ │ │ │ │ ├── FilePlanComponentAspect.java │ │ │ │ │ │ ├── FrozenAspect.java │ │ │ │ │ │ ├── GhostedAspect.java │ │ │ │ │ │ ├── ProtectedAspects.java │ │ │ │ │ │ ├── QShareAspect.java │ │ │ │ │ │ ├── RecordAspect.java │ │ │ │ │ │ ├── RecordComponentIdentifierAspect.java │ │ │ │ │ │ ├── RecordOriginatingDetailsAspect.java │ │ │ │ │ │ ├── RecordSearchAspect.java │ │ │ │ │ │ ├── ScheduledAspect.java │ │ │ │ │ │ ├── TransferredAspect.java │ │ │ │ │ │ ├── TransferringAspect.java │ │ │ │ │ │ ├── UncutoffAspect.java │ │ │ │ │ │ ├── VersionRecordAspect.java │ │ │ │ │ │ ├── VitalRecordAspect.java │ │ │ │ │ │ └── VitalRecordDefinitionAspect.java │ │ │ │ │ └── type │ │ │ │ │ │ ├── CmObjectType.java │ │ │ │ │ │ ├── DispositionActionDefinitionType.java │ │ │ │ │ │ ├── FilePlanType.java │ │ │ │ │ │ ├── HoldContainerType.java │ │ │ │ │ │ ├── NonElectronicRecordType.java │ │ │ │ │ │ ├── RecordCategoryType.java │ │ │ │ │ │ ├── RecordFolderType.java │ │ │ │ │ │ ├── RecordsManagementContainerType.java │ │ │ │ │ │ ├── RmSiteType.java │ │ │ │ │ │ ├── TransferContainerType.java │ │ │ │ │ │ ├── TransferType.java │ │ │ │ │ │ ├── UnfiledRecordContainerType.java │ │ │ │ │ │ └── UnfiledRecordFolderType.java │ │ │ │ └── security │ │ │ │ │ ├── ModelAccessDeniedException.java │ │ │ │ │ ├── ModelSecurityService.java │ │ │ │ │ ├── ModelSecurityServiceImpl.java │ │ │ │ │ ├── ProtectedAspect.java │ │ │ │ │ ├── ProtectedModelArtifact.java │ │ │ │ │ └── ProtectedProperty.java │ │ │ │ ├── notification │ │ │ │ └── RecordsManagementNotificationHelper.java │ │ │ │ ├── patch │ │ │ │ ├── AbstractModulePatch.java │ │ │ │ ├── ModulePatch.java │ │ │ │ ├── ModulePatchExecuter.java │ │ │ │ ├── ModulePatchExecuterImpl.java │ │ │ │ ├── common │ │ │ │ │ └── CapabilityPatch.java │ │ │ │ ├── compatibility │ │ │ │ │ └── ModulePatchComponent.java │ │ │ │ ├── v20 │ │ │ │ │ ├── NotificationTemplatePatch.java │ │ │ │ │ ├── RMv2FilePlanNodeRefPatch.java │ │ │ │ │ ├── RMv2ModelPatch.java │ │ │ │ │ └── RMv2SavedSearchPatch.java │ │ │ │ ├── v21 │ │ │ │ │ ├── NotificationTemplatePatch_v21.java │ │ │ │ │ ├── RMv21BehaviorScriptsPatch.java │ │ │ │ │ ├── RMv21CapabilityPatch.java │ │ │ │ │ ├── RMv21InPlacePatch.java │ │ │ │ │ ├── RMv21PatchComponent.java │ │ │ │ │ ├── RMv21RecordInheritancePatch.java │ │ │ │ │ ├── RMv21ReportServicePatch.java │ │ │ │ │ └── RMv21RolesPatch.java │ │ │ │ ├── v22 │ │ │ │ │ ├── RMv22CapabilityPatch.java │ │ │ │ │ ├── RMv22DODCompliantSitePatch.java │ │ │ │ │ ├── RMv22DODModelSeparationModulePatch.java │ │ │ │ │ ├── RMv22FileHoldReportCapabilityPatch.java │ │ │ │ │ ├── RMv22GhostOnDestroyDispositionActionPatch.java │ │ │ │ │ ├── RMv22HoldCapabilityPatch.java │ │ │ │ │ ├── RMv22HoldReportPatch.java │ │ │ │ │ ├── RMv22RemoveInPlaceRolesFromAllPatch.java │ │ │ │ │ └── RMv22ReportTemplatePatch.java │ │ │ │ ├── v23 │ │ │ │ │ ├── RMv23EndRetentionCapabilityPatch.java │ │ │ │ │ ├── RMv23RecordContributorsGroupPatch.java │ │ │ │ │ ├── RMv23SavedSearchesPatch.java │ │ │ │ │ └── RMv23VersionsEventPatch.java │ │ │ │ ├── v24 │ │ │ │ │ └── RMv24FilePlanContainerRuleInheritancePatch.java │ │ │ │ ├── v32 │ │ │ │ │ ├── RMv32HoldChildAssocPatch.java │ │ │ │ │ └── RMv32HoldReportUpdatePatch.java │ │ │ │ ├── v33 │ │ │ │ │ └── RMv33HoldAuditEntryValuesPatch.java │ │ │ │ └── v35 │ │ │ │ │ └── RMv35HoldNewChildAssocPatch.java │ │ │ │ ├── permission │ │ │ │ └── RecordsManagementPermissionPostProcessor.java │ │ │ │ ├── query │ │ │ │ ├── NodeRefEntity.java │ │ │ │ ├── PropertyValuesOfChildrenQueryParams.java │ │ │ │ ├── RecordsManagementQueryDAO.java │ │ │ │ └── RecordsManagementQueryDAOImpl.java │ │ │ │ ├── record │ │ │ │ ├── InplaceRecordService.java │ │ │ │ ├── InplaceRecordServiceImpl.java │ │ │ │ ├── RecordCreationException.java │ │ │ │ ├── RecordLinkRuntimeException.java │ │ │ │ ├── RecordMetadataBootstrap.java │ │ │ │ ├── RecordMissingMetadataException.java │ │ │ │ ├── RecordService.java │ │ │ │ ├── RecordServiceImpl.java │ │ │ │ └── RecordUtils.java │ │ │ │ ├── recordableversion │ │ │ │ ├── RecordableVersionConfigService.java │ │ │ │ └── RecordableVersionConfigServiceImpl.java │ │ │ │ ├── recordfolder │ │ │ │ ├── RecordFolderService.java │ │ │ │ └── RecordFolderServiceImpl.java │ │ │ │ ├── relationship │ │ │ │ ├── Relationship.java │ │ │ │ ├── RelationshipDefinition.java │ │ │ │ ├── RelationshipDefinitionImpl.java │ │ │ │ ├── RelationshipDisplayName.java │ │ │ │ ├── RelationshipImpl.java │ │ │ │ ├── RelationshipService.java │ │ │ │ ├── RelationshipServiceImpl.java │ │ │ │ └── RelationshipType.java │ │ │ │ ├── report │ │ │ │ ├── Report.java │ │ │ │ ├── ReportGenerator.java │ │ │ │ ├── ReportModel.java │ │ │ │ ├── ReportService.java │ │ │ │ ├── ReportServiceImpl.java │ │ │ │ └── generator │ │ │ │ │ ├── BaseReportGenerator.java │ │ │ │ │ ├── DeclarativeReportGenerator.java │ │ │ │ │ ├── ReportInfo.java │ │ │ │ │ └── transfer │ │ │ │ │ ├── TransferNode.java │ │ │ │ │ └── TransferReportGenerator.java │ │ │ │ ├── role │ │ │ │ ├── FilePlanRoleService.java │ │ │ │ ├── FilePlanRoleServiceImpl.java │ │ │ │ └── Role.java │ │ │ │ ├── script │ │ │ │ ├── AbstractRmWebScript.java │ │ │ │ ├── ApplyDodCertModelFixesGet.java │ │ │ │ ├── ApplyFixMob1573Get.java │ │ │ │ ├── AuditLogDelete.java │ │ │ │ ├── AuditLogGet.java │ │ │ │ ├── AuditLogPost.java │ │ │ │ ├── AuditLogPut.java │ │ │ │ ├── AuditLogStatusGet.java │ │ │ │ ├── BaseAuditAdminWebScript.java │ │ │ │ ├── BaseAuditRetrievalWebScript.java │ │ │ │ ├── BaseCustomPropertyWebScript.java │ │ │ │ ├── BaseTransferWebScript.java │ │ │ │ ├── BootstrapTestDataGet.java │ │ │ │ ├── CustomPropertyDefinitionDelete.java │ │ │ │ ├── CustomPropertyDefinitionPost.java │ │ │ │ ├── CustomPropertyDefinitionPut.java │ │ │ │ ├── CustomPropertyDefinitionsGet.java │ │ │ │ ├── CustomRefDelete.java │ │ │ │ ├── CustomRefPost.java │ │ │ │ ├── CustomReferenceDefinitionBase.java │ │ │ │ ├── CustomReferenceDefinitionPost.java │ │ │ │ ├── CustomReferenceDefinitionPut.java │ │ │ │ ├── CustomReferenceDefinitionsGet.java │ │ │ │ ├── CustomReferenceType.java │ │ │ │ ├── CustomRefsGet.java │ │ │ │ ├── CustomisableGet.java │ │ │ │ ├── DataSetPost.java │ │ │ │ ├── DataSetsGet.java │ │ │ │ ├── DispositionAbstractBase.java │ │ │ │ ├── DispositionActionDefinitionDelete.java │ │ │ │ ├── DispositionActionDefinitionPost.java │ │ │ │ ├── DispositionActionDefinitionPut.java │ │ │ │ ├── DispositionLifecycleGet.java │ │ │ │ ├── DispositionPropertiesGet.java │ │ │ │ ├── DispositionScheduleGet.java │ │ │ │ ├── DodCustomTypesGet.java │ │ │ │ ├── EmailMapDelete.java │ │ │ │ ├── EmailMapGet.java │ │ │ │ ├── EmailMapKeysGet.java │ │ │ │ ├── EmailMapPost.java │ │ │ │ ├── ExportPost.java │ │ │ │ ├── ImportPost.java │ │ │ │ ├── ListOfValuesGet.java │ │ │ │ ├── RMConstraintGet.java │ │ │ │ ├── RecordMetaDataAspectsGet.java │ │ │ │ ├── RelationshipDelete.java │ │ │ │ ├── RelationshipLabelsGet.java │ │ │ │ ├── RelationshipsGet.java │ │ │ │ ├── RmActionPost.java │ │ │ │ ├── TransferGet.java │ │ │ │ ├── TransferReportGet.java │ │ │ │ ├── TransferReportPost.java │ │ │ │ ├── UserRightsReportGet.java │ │ │ │ ├── admin │ │ │ │ │ ├── RMEventBase.java │ │ │ │ │ ├── RmEventDelete.java │ │ │ │ │ ├── RmEventGet.java │ │ │ │ │ ├── RmEventPut.java │ │ │ │ │ ├── RmEventTypesGet.java │ │ │ │ │ ├── RmEventsGet.java │ │ │ │ │ ├── RmEventsPost.java │ │ │ │ │ ├── RmRoleDelete.java │ │ │ │ │ ├── RmRoleGet.java │ │ │ │ │ ├── RmRolePut.java │ │ │ │ │ ├── RmRolesGet.java │ │ │ │ │ ├── RmRolesPost.java │ │ │ │ │ └── RoleDeclarativeWebScript.java │ │ │ │ ├── capability │ │ │ │ │ └── CapabilitiesGet.java │ │ │ │ ├── hold │ │ │ │ │ ├── BaseHold.java │ │ │ │ │ ├── Hold.java │ │ │ │ │ ├── HoldPost.java │ │ │ │ │ ├── HoldPut.java │ │ │ │ │ └── HoldsGet.java │ │ │ │ └── slingshot │ │ │ │ │ ├── ClassificationReasonsUtil.java │ │ │ │ │ ├── RMSavedSearchesDelete.java │ │ │ │ │ ├── RMSavedSearchesGet.java │ │ │ │ │ ├── RMSavedSearchesPost.java │ │ │ │ │ ├── RMSearchGet.java │ │ │ │ │ ├── RMSearchPropertiesGet.java │ │ │ │ │ ├── RecordCategoryUtil.java │ │ │ │ │ ├── RecordedVersionConfigGet.java │ │ │ │ │ ├── RecordedVersionConfigPost.java │ │ │ │ │ ├── SearchUtil.java │ │ │ │ │ ├── Version.java │ │ │ │ │ └── forms │ │ │ │ │ └── RMMetaDataGet.java │ │ │ │ ├── search │ │ │ │ ├── RecordsManagementSearchParameters.java │ │ │ │ ├── RecordsManagementSearchService.java │ │ │ │ ├── RecordsManagementSearchServiceImpl.java │ │ │ │ ├── ReportDetails.java │ │ │ │ ├── SavedSearchDetails.java │ │ │ │ ├── SavedSearchDetailsCompatibility.java │ │ │ │ └── SortItem.java │ │ │ │ ├── security │ │ │ │ ├── ExtendedSecurityService.java │ │ │ │ ├── ExtendedSecurityServiceImpl.java │ │ │ │ ├── FilePlanPermissionService.java │ │ │ │ ├── FilePlanPermissionServiceImpl.java │ │ │ │ ├── RMMethodSecurityInterceptor.java │ │ │ │ └── RMMethodSecurityPostProcessor.java │ │ │ │ ├── site │ │ │ │ └── GetChildrenCannedQueryFactory.java │ │ │ │ ├── transfer │ │ │ │ ├── TransferService.java │ │ │ │ └── TransferServiceImpl.java │ │ │ │ ├── util │ │ │ │ ├── AlfrescoTransactionSupport.java │ │ │ │ ├── AuthenticationUtil.java │ │ │ │ ├── ContentBinDuplicationUtility.java │ │ │ │ ├── FileUtils.java │ │ │ │ ├── NodeTypeUtility.java │ │ │ │ ├── PoliciesUtil.java │ │ │ │ ├── PropertyModificationAllowedCheck.java │ │ │ │ ├── RMCollectionUtils.java │ │ │ │ ├── RMContainerCacheManager.java │ │ │ │ ├── RMParameterCheck.java │ │ │ │ ├── ServiceBaseImpl.java │ │ │ │ ├── TransactionalResourceHelper.java │ │ │ │ ├── UpdateActionType.java │ │ │ │ └── dao │ │ │ │ │ ├── QueryField.java │ │ │ │ │ └── QueryParams.java │ │ │ │ ├── version │ │ │ │ ├── ExtendedVersionableAspect.java │ │ │ │ ├── RecordableVersionModel.java │ │ │ │ ├── RecordableVersionNodeServiceImpl.java │ │ │ │ ├── RecordableVersionPolicy.java │ │ │ │ ├── RecordableVersionService.java │ │ │ │ ├── RecordableVersionServiceImpl.java │ │ │ │ └── model │ │ │ │ │ └── VersionableAspect.java │ │ │ │ └── vital │ │ │ │ ├── BroadcastVitalRecordDefinitionAction.java │ │ │ │ ├── ReviewedAction.java │ │ │ │ ├── VitalRecordDefinition.java │ │ │ │ ├── VitalRecordDefinitionImpl.java │ │ │ │ ├── VitalRecordService.java │ │ │ │ └── VitalRecordServiceImpl.java │ │ │ ├── repo │ │ │ ├── action │ │ │ │ ├── ExtendedActionServiceImpl.java │ │ │ │ └── parameter │ │ │ │ │ ├── DateParameterProcessor.java │ │ │ │ │ ├── MessageParameterProcessor.java │ │ │ │ │ ├── NodeParameterProcessor.java │ │ │ │ │ ├── NodeParameterSuggesterBootstrap.java │ │ │ │ │ ├── ParameterProcessor.java │ │ │ │ │ ├── ParameterProcessorComponent.java │ │ │ │ │ └── ParameterSubstitutionSuggester.java │ │ │ ├── imap │ │ │ │ └── ExtendedImapServiceImpl.java │ │ │ ├── jscript │ │ │ │ └── ExtendedSearch.java │ │ │ ├── model │ │ │ │ └── filefolder │ │ │ │ │ └── ExtendedFileFolderServiceImpl.java │ │ │ ├── rule │ │ │ │ ├── ExtendedRuleServiceImpl.java │ │ │ │ └── ruletrigger │ │ │ │ │ └── ExtendedBeforeDeleteChildAssociationRuleTrigger.java │ │ │ ├── security │ │ │ │ ├── authority │ │ │ │ │ ├── RMAuthority.java │ │ │ │ │ └── RMAuthorityDAOImpl.java │ │ │ │ └── permissions │ │ │ │ │ ├── impl │ │ │ │ │ ├── ExtendedPermissionService.java │ │ │ │ │ ├── ExtendedPermissionServiceImpl.java │ │ │ │ │ └── acegi │ │ │ │ │ │ └── RMACLEntryVoter.java │ │ │ │ │ └── processor │ │ │ │ │ ├── PermissionPostProcessor.java │ │ │ │ │ ├── PermissionPreProcessor.java │ │ │ │ │ ├── PermissionProcessorRegistry.java │ │ │ │ │ └── impl │ │ │ │ │ ├── PermissionPostProcessorBaseImpl.java │ │ │ │ │ ├── PermissionPreProcessorBaseImpl.java │ │ │ │ │ └── PermissionProcessorBaseImpl.java │ │ │ └── web │ │ │ │ └── scripts │ │ │ │ ├── dictionary │ │ │ │ ├── RmClassesGet.java │ │ │ │ ├── RmDictionaryWebServiceUtils.java │ │ │ │ └── RmPropertiesGet.java │ │ │ │ ├── roles │ │ │ │ ├── AbstractRmAuthorities.java │ │ │ │ ├── DynamicAuthoritiesGet.java │ │ │ │ ├── RmAuthoritiesDelete.java │ │ │ │ └── RmAuthoritiesPost.java │ │ │ │ ├── rule │ │ │ │ ├── RmActionConditionDefinitionsGet.java │ │ │ │ ├── RmActionDefinitionsGet.java │ │ │ │ └── WhitelistedDMActions.java │ │ │ │ ├── schedule │ │ │ │ └── UpdateRecordScheduleGet.java │ │ │ │ └── substitutionsuggestions │ │ │ │ └── RmSubstitutionSuggestionsGet.java │ │ │ ├── rm │ │ │ └── rest │ │ │ │ └── api │ │ │ │ ├── RMNodes.java │ │ │ │ ├── RMSites.java │ │ │ │ ├── fileplans │ │ │ │ ├── FilePlanChildrenRelation.java │ │ │ │ ├── FilePlanEntityResource.java │ │ │ │ └── package-info.java │ │ │ │ ├── files │ │ │ │ ├── FilesEntityResource.java │ │ │ │ └── package-info.java │ │ │ │ ├── impl │ │ │ │ ├── ApiNodesModelFactory.java │ │ │ │ ├── FilePlanComponentsApiUtils.java │ │ │ │ ├── RMSitesImpl.java │ │ │ │ └── SearchTypesFactory.java │ │ │ │ ├── model │ │ │ │ ├── FilePlan.java │ │ │ │ ├── RMNode.java │ │ │ │ ├── RMSite.java │ │ │ │ ├── RMSiteCompliance.java │ │ │ │ ├── Record.java │ │ │ │ ├── RecordCategory.java │ │ │ │ ├── RecordCategoryChild.java │ │ │ │ ├── RecordFolder.java │ │ │ │ ├── SecurityControlSetting.java │ │ │ │ ├── TargetContainer.java │ │ │ │ ├── Transfer.java │ │ │ │ ├── TransferChild.java │ │ │ │ ├── TransferContainer.java │ │ │ │ ├── UnfiledChild.java │ │ │ │ ├── UnfiledContainer.java │ │ │ │ ├── UnfiledContainerChild.java │ │ │ │ ├── UnfiledRecordFolder.java │ │ │ │ ├── UnfiledRecordFolderChild.java │ │ │ │ └── UploadInfo.java │ │ │ │ ├── recordcategories │ │ │ │ ├── RecordCategoriesEntityResource.java │ │ │ │ ├── RecordCategoryChildrenRelation.java │ │ │ │ └── package-info.java │ │ │ │ ├── recordfolders │ │ │ │ ├── RecordFolderChildrenRelation.java │ │ │ │ ├── RecordFolderEntityResource.java │ │ │ │ └── package-info.java │ │ │ │ ├── records │ │ │ │ ├── RecordsEntityResource.java │ │ │ │ └── package-info.java │ │ │ │ ├── sites │ │ │ │ ├── RMSiteEntityResource.java │ │ │ │ └── package-info.java │ │ │ │ ├── transfercontainers │ │ │ │ ├── TransferContainerChildrenRelation.java │ │ │ │ ├── TransferContainerEntityResource.java │ │ │ │ └── package-info.java │ │ │ │ ├── transfers │ │ │ │ ├── TransferChildrenRelation.java │ │ │ │ ├── TransferEntityResource.java │ │ │ │ └── package-info.java │ │ │ │ ├── unfiledcontainers │ │ │ │ ├── UnfiledContainerChildrenRelation.java │ │ │ │ ├── UnfiledContainerEntityResource.java │ │ │ │ └── package-info.java │ │ │ │ ├── unfiledrecordfolders │ │ │ │ ├── UnfiledRecordFolderChildrenRelation.java │ │ │ │ ├── UnfiledRecordFolderEntityResource.java │ │ │ │ └── package-info.java │ │ │ │ └── util │ │ │ │ ├── CustomDateTimeSerializer.java │ │ │ │ ├── CustomLocalDateDeserializer.java │ │ │ │ └── CustomLocalDateSerializer.java │ │ │ ├── util │ │ │ ├── LockCallback.java │ │ │ ├── SortDirection.java │ │ │ ├── SortUtils.java │ │ │ ├── StringUtils.java │ │ │ └── WebScriptUtils.java │ │ │ └── workflow │ │ │ ├── RMWorkflowModel.java │ │ │ └── requestInfo │ │ │ ├── RequestInfoAssignmentHandler.java │ │ │ ├── RequestInfoNotifier.java │ │ │ ├── RequestInfoUtils.java │ │ │ └── RequestInfoVariableHandler.java │ ├── src │ │ └── test │ │ │ └── properties │ │ │ └── local │ │ │ └── alfresco-global.properties │ ├── test │ │ ├── java │ │ │ └── org │ │ │ │ └── alfresco │ │ │ │ └── module │ │ │ │ └── org_alfresco_module_rm │ │ │ │ └── test │ │ │ │ ├── AllTestSuite.java │ │ │ │ ├── integration │ │ │ │ ├── destroy │ │ │ │ │ └── DestroyContentTest.java │ │ │ │ ├── disposition │ │ │ │ │ ├── CutOffTest.java │ │ │ │ │ ├── DispositionScheduleInheritanceTest.java │ │ │ │ │ ├── MultipleSchedulesTest.java │ │ │ │ │ ├── UpdateDispositionScheduleTest.java │ │ │ │ │ └── UpdateNextDispositionActionTest.java │ │ │ │ ├── dod │ │ │ │ │ ├── RM1147DODRMSiteTest.java │ │ │ │ │ └── RM1194ExcludeDoDRecordTypesTest.java │ │ │ │ ├── event │ │ │ │ │ └── CompleteEventsTest.java │ │ │ │ ├── hold │ │ │ │ │ ├── AddActiveContentToHoldTest.java │ │ │ │ │ ├── AddToHoldTest.java │ │ │ │ │ ├── CreateHoldTest.java │ │ │ │ │ ├── DeleteHoldTest.java │ │ │ │ │ ├── RemoveActiveContentFromHoldTest.java │ │ │ │ │ ├── RemoveFromHoldTest.java │ │ │ │ │ └── UpdateHeldActiveContentTest.java │ │ │ │ ├── issue │ │ │ │ │ ├── MNT19114Test.java │ │ │ │ │ ├── RM1008Test.java │ │ │ │ │ ├── RM1027Test.java │ │ │ │ │ ├── RM1030Test.java │ │ │ │ │ ├── RM1424Test.java │ │ │ │ │ ├── RM1429Test.java │ │ │ │ │ ├── RM1463Test.java │ │ │ │ │ ├── RM1464Test.java │ │ │ │ │ ├── RM1727Test.java │ │ │ │ │ ├── RM1799Test.java │ │ │ │ │ ├── RM1814Test.java │ │ │ │ │ ├── RM1887Test.java │ │ │ │ │ ├── RM1914Test.java │ │ │ │ │ ├── RM2072Test.java │ │ │ │ │ ├── RM2190Test.java │ │ │ │ │ ├── RM2192Test.java │ │ │ │ │ ├── RM3341Test.java │ │ │ │ │ ├── RM3450Test.java │ │ │ │ │ ├── RM3993Test.java │ │ │ │ │ ├── RM4101Test.java │ │ │ │ │ ├── RM4163Test.java │ │ │ │ │ ├── RM4293Test.java │ │ │ │ │ ├── RM452Test.java │ │ │ │ │ ├── RM4619Test.java │ │ │ │ │ ├── RM4804Test.java │ │ │ │ │ ├── RM5225Test.java │ │ │ │ │ ├── RM804Test.java │ │ │ │ │ ├── RM978Test.java │ │ │ │ │ ├── RM981SystemTest.java │ │ │ │ │ ├── RM994Test.java │ │ │ │ │ └── rm3314 │ │ │ │ │ │ ├── RM3314Test.java │ │ │ │ │ │ └── RM3314TestListener.java │ │ │ │ ├── record │ │ │ │ │ ├── CompleteRecordTest.java │ │ │ │ │ ├── CreateInplaceRecordTest.java │ │ │ │ │ ├── CreateRecordTest.java │ │ │ │ │ ├── DownloadAsZipRecordTest.java │ │ │ │ │ ├── HideInplaceRecordTest.java │ │ │ │ │ ├── InplaceRecordPermissionTest.java │ │ │ │ │ ├── LinkRecordTest.java │ │ │ │ │ ├── MoveInplaceRecordTest.java │ │ │ │ │ ├── MoveRecordTest.java │ │ │ │ │ ├── RejectRecordTest.java │ │ │ │ │ ├── UpdateRecordAspectsTest.java │ │ │ │ │ └── ViewRecordTest.java │ │ │ │ ├── recordfolder │ │ │ │ │ ├── DeleteRecordFolderTest.java │ │ │ │ │ └── MoveRecordFolderTest.java │ │ │ │ ├── relationship │ │ │ │ │ ├── CreateRelationshipTest.java │ │ │ │ │ └── DeleteRelationshipTest.java │ │ │ │ ├── report │ │ │ │ │ └── HoldReportTest.java │ │ │ │ ├── rule │ │ │ │ │ └── FilePlanRuleInheritanceTest.java │ │ │ │ ├── transfer │ │ │ │ │ ├── CreateTransferFolderAsNonAdminUserTest.java │ │ │ │ │ ├── FilingPermissionsOnTransferFolderTest.java │ │ │ │ │ ├── NoPermissionsOnTransferFolderTest.java │ │ │ │ │ └── ReadPermissionsOnTransferFolderTest.java │ │ │ │ └── version │ │ │ │ │ ├── AdHocRecordableVersionsTest.java │ │ │ │ │ ├── AutoRecordableVersionsTest.java │ │ │ │ │ ├── AutoVersionTest.java │ │ │ │ │ ├── DeclareAsRecordVersionTest.java │ │ │ │ │ ├── DeleteRecordVersionTest.java │ │ │ │ │ └── RecordableVersionsBaseTest.java │ │ │ │ ├── legacy │ │ │ │ ├── action │ │ │ │ │ ├── CreateRecordActionTest.java │ │ │ │ │ ├── DeclareVersionAsRecordActionTest.java │ │ │ │ │ ├── FileReportActionTest.java │ │ │ │ │ ├── FileToActionTest.java │ │ │ │ │ ├── HideRecordActionTest.java │ │ │ │ │ ├── MoveRecordActionTest.java │ │ │ │ │ ├── RecordableVersionConfigActionTest.java │ │ │ │ │ └── RejectActionTest.java │ │ │ │ ├── capabilities │ │ │ │ │ ├── CompositeCapabilityTest.java │ │ │ │ │ └── DeclarativeCapabilityTest.java │ │ │ │ ├── jscript │ │ │ │ │ └── JSONConversionComponentTest.java │ │ │ │ ├── security │ │ │ │ │ └── MethodSecurityTest.java │ │ │ │ ├── service │ │ │ │ │ ├── CapabilityServiceImplTest.java │ │ │ │ │ ├── CustomEMailMappingServiceImplTest.java │ │ │ │ │ ├── DataSetServiceImplTest.java │ │ │ │ │ ├── DispositionServiceImplTest.java │ │ │ │ │ ├── ExtendedActionServiceTest.java │ │ │ │ │ ├── ExtendedSecurityServiceImplTest.java │ │ │ │ │ ├── FilePlanPermissionServiceImplTest.java │ │ │ │ │ ├── FilePlanRoleServiceImplTest.java │ │ │ │ │ ├── FilePlanServiceImplTest.java │ │ │ │ │ ├── FreezeServiceImplTest.java │ │ │ │ │ ├── ModelSecurityServiceImplTest.java │ │ │ │ │ ├── RecordServiceImplTest.java │ │ │ │ │ ├── RecordsManagementActionServiceImplTest.java │ │ │ │ │ ├── RecordsManagementAdminServiceImplTest.java │ │ │ │ │ ├── RecordsManagementAuditServiceImplTest.java │ │ │ │ │ ├── RecordsManagementEventServiceImplTest.java │ │ │ │ │ ├── RecordsManagementQueryDAOImplTest.java │ │ │ │ │ ├── RecordsManagementSearchServiceImplTest.java │ │ │ │ │ ├── RecordsManagementServiceImplTest.java │ │ │ │ │ ├── ReportServiceImplTest.java │ │ │ │ │ ├── ServiceBaseImplTest.java │ │ │ │ │ └── VitalRecordServiceImplTest.java │ │ │ │ └── webscript │ │ │ │ │ ├── ActionDefinitionsRestApiTest.java │ │ │ │ │ ├── AuditRestApiTest.java │ │ │ │ │ ├── CapabilitiesRestApiTest.java │ │ │ │ │ ├── DataSetRestApiTest.java │ │ │ │ │ ├── DispositionRestApiTest.java │ │ │ │ │ ├── EmailMapKeysRestApiTest.java │ │ │ │ │ ├── EmailMapScriptTest.java │ │ │ │ │ ├── EventRestApiTest.java │ │ │ │ │ ├── RMCaveatConfigScriptTest.java │ │ │ │ │ ├── RMConstraintScriptTest.java │ │ │ │ │ ├── RmAuthoritiesRestApiTest.java │ │ │ │ │ ├── RmClassesRestApiTest.java │ │ │ │ │ ├── RmPropertiesRestApiTest.java │ │ │ │ │ ├── RmRestApiTest.java │ │ │ │ │ ├── RoleRestApiTest.java │ │ │ │ │ └── SubstitutionSuggestionsRestApiTest.java │ │ │ │ ├── system │ │ │ │ ├── DataLoadSystemTest.java │ │ │ │ └── NotificationServiceHelperSystemTest.java │ │ │ │ └── util │ │ │ │ ├── BaseRMTestCase.java │ │ │ │ ├── BaseRMWebScriptTestCase.java │ │ │ │ ├── CommonRMTestUtils.java │ │ │ │ ├── GenerateCapabilityReport.java │ │ │ │ ├── RetryingTransactionHelperBaseTest.java │ │ │ │ ├── TestAction.java │ │ │ │ ├── TestAction2.java │ │ │ │ ├── TestActionParams.java │ │ │ │ ├── TestActionPropertySubs.java │ │ │ │ ├── TestContentCleanser.java │ │ │ │ ├── TestDmAction.java │ │ │ │ ├── TestModel.java │ │ │ │ ├── TestService.java │ │ │ │ ├── TestServiceImpl.java │ │ │ │ ├── TestWebScriptRepoServer.java │ │ │ │ ├── UserAndGroupsUtils.java │ │ │ │ └── bdt │ │ │ │ ├── BehaviourTest.java │ │ │ │ ├── ExpectedFailure.java │ │ │ │ └── ExpectedValue.java │ │ └── resources │ │ │ ├── alfresco │ │ │ ├── extension │ │ │ │ └── rm-method-security.properties │ │ │ ├── test │ │ │ │ └── content │ │ │ │ │ └── Image.jpg │ │ │ └── version.properties │ │ │ ├── org │ │ │ └── alfresco │ │ │ │ └── repository │ │ │ │ └── generic-paged-results.lib.ftl │ │ │ ├── test-context.xml │ │ │ ├── test-filePlan.xml │ │ │ ├── test-job-context.xml │ │ │ ├── test-model.xml │ │ │ ├── test-rm3314-context.xml │ │ │ ├── test.properties │ │ │ ├── testCaveatConfig1.json │ │ │ └── testCaveatConfig2.json │ ├── tomcat │ │ └── context.xml │ └── unit-test │ │ ├── java │ │ └── org │ │ │ └── alfresco │ │ │ ├── module │ │ │ └── org_alfresco_module_rm │ │ │ │ ├── action │ │ │ │ ├── BaseActionUnitTest.java │ │ │ │ ├── dm │ │ │ │ │ └── DeclareAsVersionRecordActionUnitTest.java │ │ │ │ └── impl │ │ │ │ │ ├── BroadcastDispositionActionDefinitionUpdateActionUnitTest.java │ │ │ │ │ ├── FileReportActionUnitTest.java │ │ │ │ │ └── UnlinkFromActionUnitTest.java │ │ │ │ ├── api │ │ │ │ ├── CommunityPublicAPIUnitTest.java │ │ │ │ └── PublicAPITestUtil.java │ │ │ │ ├── audit │ │ │ │ ├── RecordsManagementAuditServiceImplUnitTest.java │ │ │ │ └── event │ │ │ │ │ ├── AddToHoldAuditEventUnitTest.java │ │ │ │ │ ├── CreateHoldAuditEventUnitTest.java │ │ │ │ │ ├── DeleteHoldAuditEventUnitTest.java │ │ │ │ │ └── RemoveFromHoldAuditEventUnitTest.java │ │ │ │ ├── bootstrap │ │ │ │ ├── BootstrapImporterModuleComponentUnitTest.java │ │ │ │ ├── ModuleCompatibilityComponentUnitTest.java │ │ │ │ └── RecordContributorsGroupBootstrapComponentUnitTest.java │ │ │ │ ├── capability │ │ │ │ ├── RMAfterInvocationProviderUnitTest.java │ │ │ │ ├── RMEntryVoterUnitTest.java │ │ │ │ ├── declarative │ │ │ │ │ └── condition │ │ │ │ │ │ ├── FillingOnHoldContainerCapabilityConditionUnitTest.java │ │ │ │ │ │ ├── FrozenCapabilityConditionUnitTest.java │ │ │ │ │ │ └── HoldCapabilityConditionUnitTest.java │ │ │ │ └── impl │ │ │ │ │ └── EditNonRecordsMetadataCapabilityUnitTest.java │ │ │ │ ├── content │ │ │ │ ├── EagerContentStoreCleanerUnitTest.java │ │ │ │ └── cleanser │ │ │ │ │ └── ContentCleanser522022MUnitTest.java │ │ │ │ ├── disposition │ │ │ │ └── DispositionServiceImplUnitTest.java │ │ │ │ ├── email │ │ │ │ └── RFC822MetadataExtracterUnitTest.java │ │ │ │ ├── forms │ │ │ │ └── RecordsManagementTypeFormFilterUnitTest.java │ │ │ │ ├── hold │ │ │ │ └── HoldServiceImplUnitTest.java │ │ │ │ ├── job │ │ │ │ └── DispositionLifecycleJobExecuterUnitTest.java │ │ │ │ ├── jscript │ │ │ │ └── app │ │ │ │ │ └── evaluator │ │ │ │ │ ├── FrozenEvaluatorUnitTest.java │ │ │ │ │ └── TransferEvaluatorUnitTest.java │ │ │ │ ├── model │ │ │ │ ├── compatibility │ │ │ │ │ └── DictionaryBootstrapPostProcessorUnitTest.java │ │ │ │ └── rma │ │ │ │ │ ├── aspect │ │ │ │ │ ├── FrozenAspectUnitTest.java │ │ │ │ │ ├── RecordAspectUnitTest.java │ │ │ │ │ └── VersionRecordAspectUnitTest.java │ │ │ │ │ └── type │ │ │ │ │ ├── FilePlanTypeUnitTest.java │ │ │ │ │ ├── HoldContainerTypeUnitTest.java │ │ │ │ │ ├── NonElectronicRecordTypeUnitTest.java │ │ │ │ │ ├── RecordCategoryTypeUnitTest.java │ │ │ │ │ ├── RecordFolderTypeUnitTest.java │ │ │ │ │ ├── RecordsManagementContainerTypeUnitTest.java │ │ │ │ │ ├── RmSiteTypeUnitTest.java │ │ │ │ │ ├── TransferContainerTypeUnitTest.java │ │ │ │ │ ├── TransferTypeUnitTest.java │ │ │ │ │ ├── UnfiledRecordContainerTypeUnitTest.java │ │ │ │ │ └── UnfiledRecordFolderTypeUnitTest.java │ │ │ │ ├── patch │ │ │ │ ├── v22 │ │ │ │ │ ├── RMv22CapabilityPatchUnitTest.java │ │ │ │ │ └── RMv22RemoveInPlaceRolesFromAllPatchUnitTest.java │ │ │ │ ├── v23 │ │ │ │ │ └── RMv23SavedSearchesPatchUnitTest.java │ │ │ │ ├── v24 │ │ │ │ │ └── RMv24FilePlanContainerRuleInheritancePatchUnitTest.java │ │ │ │ ├── v32 │ │ │ │ │ ├── RMv32HoldChildAssocPatchUnitTest.java │ │ │ │ │ └── RMv32HoldReportUpdatePatchUnitTest.java │ │ │ │ ├── v33 │ │ │ │ │ └── RMv33HoldAuditEntryValuesPatchUnitTest.java │ │ │ │ └── v35 │ │ │ │ │ └── RMv35HoldNewChildAssocPatchUnitTest.java │ │ │ │ ├── permission │ │ │ │ └── RecordsManagementPermissionPostProcessorUnitTest.java │ │ │ │ ├── record │ │ │ │ ├── RecordMetadataBootstrapUnitTest.java │ │ │ │ └── RecordServiceImplUnitTest.java │ │ │ │ ├── recorded │ │ │ │ └── version │ │ │ │ │ └── config │ │ │ │ │ ├── BaseRecordedVersionConfigTest.java │ │ │ │ │ ├── RecordedVersionConfigGetUnitTest.java │ │ │ │ │ └── RecordedVersionConfigPostUnitTest.java │ │ │ │ ├── script │ │ │ │ ├── hold │ │ │ │ │ ├── BaseHoldWebScriptUnitTest.java │ │ │ │ │ ├── BaseHoldWebScriptWithContentUnitTest.java │ │ │ │ │ ├── HoldPostUnitTest.java │ │ │ │ │ ├── HoldPutUnitTest.java │ │ │ │ │ └── HoldsGetUnitTest.java │ │ │ │ └── slingshot │ │ │ │ │ ├── ClassificationReasonsUtilUnitTest.java │ │ │ │ │ └── RecordCategoryUtilUnitTest.java │ │ │ │ ├── security │ │ │ │ ├── ExtendedSecurityServiceImplUnitTest.java │ │ │ │ ├── FilePlanPermissionServiceImplUnitTest.java │ │ │ │ └── RMMethodSecurityPostProcessorUnitTest.java │ │ │ │ ├── test │ │ │ │ ├── AllUnitTestSuite.java │ │ │ │ └── util │ │ │ │ │ ├── AlfMock.java │ │ │ │ │ ├── BaseUnitTest.java │ │ │ │ │ ├── BaseWebScriptUnitTest.java │ │ │ │ │ ├── BaseYamlUnitTest.java │ │ │ │ │ ├── ExceptionUtils.java │ │ │ │ │ ├── ExceptionUtilsUsageExamplesUnitTest.java │ │ │ │ │ ├── FPUtils.java │ │ │ │ │ ├── FPUtilsUnitTest.java │ │ │ │ │ ├── MockAuthenticationUtilHelper.java │ │ │ │ │ └── WebScriptExceptionMatcher.java │ │ │ │ ├── util │ │ │ │ ├── ContentBinDuplicationUtilityUnitTest.java │ │ │ │ ├── NodeTypeUtilityUnitTest.java │ │ │ │ ├── PropertyModificationAllowedCheckUnitTest.java │ │ │ │ ├── RMCollectionUtilsUnitTest.java │ │ │ │ ├── RMParameterCheckUnitTest.java │ │ │ │ └── ServiceBaseImplUnitTest.java │ │ │ │ ├── version │ │ │ │ ├── ExtendedVersionableAspectUnitTest.java │ │ │ │ ├── RecordableVersionServiceImplUnitTest.java │ │ │ │ └── TestRecordableVersionServiceImpl.java │ │ │ │ └── vital │ │ │ │ └── ReviewedActionUnitTest.java │ │ │ ├── repo │ │ │ ├── action │ │ │ │ └── parameter │ │ │ │ │ └── DateParameterProcessorUnitTest.java │ │ │ ├── imap │ │ │ │ └── ExtendedImapServiceImplUnitTest.java │ │ │ ├── security │ │ │ │ └── permissions │ │ │ │ │ └── impl │ │ │ │ │ └── ExtendedPermissionServiceImplUnitTest.java │ │ │ └── web │ │ │ │ └── scripts │ │ │ │ ├── actions │ │ │ │ └── RmActionDefinitionsGetUnitTest.java │ │ │ │ └── roles │ │ │ │ └── DynamicAuthoritiesGetUnitTest.java │ │ │ └── rm │ │ │ └── rest │ │ │ └── api │ │ │ ├── impl │ │ │ ├── RMSitesImplUnitTest.java │ │ │ ├── RMYamlUnitTest.java │ │ │ └── RecordsImplUnitTest.java │ │ │ └── sites │ │ │ └── RMSiteEntityResourceUnitTest.java │ │ └── resources │ │ └── rest │ │ └── schema.json ├── rm-community-rest-api-explorer │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ └── webapp │ │ ├── definitions │ │ └── gs-core-api.yaml │ │ └── index.html └── rm-community-share │ ├── .env │ ├── .maven-dockerignore │ ├── Dockerfile │ ├── config │ ├── META-INF │ │ └── resources │ │ │ └── components │ │ │ └── dm │ │ │ └── rules │ │ │ └── config │ │ │ └── rule-config-action-custom.js │ └── alfresco │ │ ├── dod5015 │ │ ├── dod5015-context.xml │ │ ├── dod5015-form-config.xml │ │ ├── dod5015-share-config.xml │ │ └── messages │ │ │ ├── dod5015.properties │ │ │ ├── dod5015_de.properties │ │ │ ├── dod5015_es.properties │ │ │ ├── dod5015_fr.properties │ │ │ ├── dod5015_it.properties │ │ │ ├── dod5015_ja.properties │ │ │ ├── dod5015_nb.properties │ │ │ ├── dod5015_nl.properties │ │ │ ├── dod5015_pt_BR.properties │ │ │ ├── dod5015_ru.properties │ │ │ └── dod5015_zh_CN.properties │ │ ├── messages │ │ ├── rm.properties │ │ ├── rm_de.properties │ │ ├── rm_es.properties │ │ ├── rm_fr.properties │ │ ├── rm_it.properties │ │ ├── rm_ja.properties │ │ ├── rm_nb.properties │ │ ├── rm_nl.properties │ │ ├── rm_pt_BR.properties │ │ ├── rm_ru.properties │ │ └── rm_zh_CN.properties │ │ ├── module │ │ └── org_alfresco_module_rm_share │ │ │ ├── file-mapping.properties │ │ │ └── module.properties │ │ ├── rm-form-config.xml │ │ ├── rm-share-config.xml │ │ ├── rm-share-workflow-form-config.xml │ │ ├── site-data │ │ ├── extensions │ │ │ └── alfresco-rm-extension.xml │ │ ├── pages │ │ │ ├── rm-audit.xml │ │ │ ├── rm-console.xml │ │ │ ├── rm-disposition-edit.xml │ │ │ ├── rm-fileplan-report.xml │ │ │ ├── rm-metadata-stub-folder-details.xml │ │ │ ├── rm-record-category-details.xml │ │ │ ├── rm-record-folder-details.xml │ │ │ ├── rm-record-series-details.xml │ │ │ ├── rm-reference-new.xml │ │ │ ├── rm-references.xml │ │ │ ├── rm-search.xml │ │ │ └── rmsearch.xml │ │ ├── presets │ │ │ └── rm-presets.xml │ │ └── template-instances │ │ │ ├── rm-audit.xml │ │ │ ├── rm-disposition-edit.xml │ │ │ ├── rm-fileplan-report.xml │ │ │ ├── rm-new-reference.xml │ │ │ ├── rm-record-category-details.xml │ │ │ ├── rm-record-folder-details.xml │ │ │ ├── rm-record-series-details.xml │ │ │ ├── rm-references.xml │ │ │ └── rm-search.xml │ │ ├── site-webscripts │ │ └── org │ │ │ └── alfresco │ │ │ ├── components │ │ │ └── form │ │ │ │ └── controls │ │ │ │ └── readOnlyTextarea.ftl │ │ │ ├── config │ │ │ └── components │ │ │ │ ├── comments │ │ │ │ └── comments-list.get.js │ │ │ │ ├── document-details │ │ │ │ ├── document-permissions.get.js │ │ │ │ ├── document-publishing.get.js │ │ │ │ ├── document-references.get.desc.xml │ │ │ │ ├── document-references.get.head.ftl │ │ │ │ ├── document-references.get.html.ftl │ │ │ │ ├── document-references.get.js │ │ │ │ ├── document-references.get.properties │ │ │ │ ├── document-references.get_de.properties │ │ │ │ ├── document-references.get_es.properties │ │ │ │ ├── document-references.get_fr.properties │ │ │ │ ├── document-references.get_it.properties │ │ │ │ ├── document-references.get_ja.properties │ │ │ │ ├── document-references.get_nb.properties │ │ │ │ ├── document-references.get_nl.properties │ │ │ │ ├── document-references.get_pt_BR.properties │ │ │ │ ├── document-references.get_ru.properties │ │ │ │ ├── document-references.get_zh_CN.properties │ │ │ │ ├── document-tags.get.js │ │ │ │ ├── document-versions.get.desc.xml │ │ │ │ ├── document-versions.get.html.ftl │ │ │ │ ├── document-versions.get.js │ │ │ │ ├── document-versions.get.properties │ │ │ │ ├── document-versions.get_de.properties │ │ │ │ ├── document-versions.get_es.properties │ │ │ │ ├── document-versions.get_fr.properties │ │ │ │ ├── document-versions.get_it.properties │ │ │ │ ├── document-versions.get_ja.properties │ │ │ │ ├── document-versions.get_nb.properties │ │ │ │ ├── document-versions.get_nl.properties │ │ │ │ ├── document-versions.get_pt_BR.properties │ │ │ │ ├── document-versions.get_ru.properties │ │ │ │ ├── document-versions.get_zh_CN.properties │ │ │ │ └── document-workflows.get.js │ │ │ │ ├── fileplan │ │ │ │ ├── events.get.desc.xml │ │ │ │ ├── events.get.head.ftl │ │ │ │ ├── events.get.html.ftl │ │ │ │ ├── events.get.js │ │ │ │ ├── events.get.properties │ │ │ │ ├── events.get_de.properties │ │ │ │ ├── events.get_es.properties │ │ │ │ ├── events.get_fr.properties │ │ │ │ ├── events.get_it.properties │ │ │ │ ├── events.get_ja.properties │ │ │ │ ├── events.get_nb.properties │ │ │ │ ├── events.get_nl.properties │ │ │ │ ├── events.get_pt_BR.properties │ │ │ │ ├── events.get_ru.properties │ │ │ │ ├── events.get_zh_CN.properties │ │ │ │ ├── relationships.get.desc.xml │ │ │ │ ├── relationships.get.html.ftl │ │ │ │ ├── relationships.get.js │ │ │ │ ├── relationships.get.properties │ │ │ │ ├── relationships.get_de.properties │ │ │ │ ├── relationships.get_es.properties │ │ │ │ ├── relationships.get_fr.properties │ │ │ │ ├── relationships.get_it.properties │ │ │ │ ├── relationships.get_ja.properties │ │ │ │ ├── relationships.get_nb.properties │ │ │ │ ├── relationships.get_nl.properties │ │ │ │ ├── relationships.get_pt_BR.properties │ │ │ │ ├── relationships.get_ru.properties │ │ │ │ └── relationships.get_zh_CN.properties │ │ │ │ ├── head │ │ │ │ └── resources.get.html.ftl │ │ │ │ ├── node-details │ │ │ │ └── node-header.get.js │ │ │ │ ├── recordDetailUtils.js │ │ │ │ └── workflow │ │ │ │ └── workflow-list.get.js │ │ │ ├── rm │ │ │ ├── components │ │ │ │ ├── audit │ │ │ │ │ ├── audit.get.desc.xml │ │ │ │ │ ├── audit.get.head.ftl │ │ │ │ │ ├── audit.get.html.ftl │ │ │ │ │ ├── audit.get.js │ │ │ │ │ ├── audit.get.properties │ │ │ │ │ ├── audit.get_de.properties │ │ │ │ │ ├── audit.get_es.properties │ │ │ │ │ ├── audit.get_fr.properties │ │ │ │ │ ├── audit.get_it.properties │ │ │ │ │ ├── audit.get_ja.properties │ │ │ │ │ ├── audit.get_nb.properties │ │ │ │ │ ├── audit.get_nl.properties │ │ │ │ │ ├── audit.get_pt_BR.properties │ │ │ │ │ ├── audit.get_ru.properties │ │ │ │ │ └── audit.get_zh_CN.properties │ │ │ │ ├── console │ │ │ │ │ ├── rm-audit.get.desc.xml │ │ │ │ │ ├── rm-audit.get.head.ftl │ │ │ │ │ ├── rm-audit.get.html.ftl │ │ │ │ │ ├── rm-audit.get.js │ │ │ │ │ ├── rm-audit.get.properties │ │ │ │ │ ├── rm-audit.get_de.properties │ │ │ │ │ ├── rm-audit.get_es.properties │ │ │ │ │ ├── rm-audit.get_fr.properties │ │ │ │ │ ├── rm-audit.get_it.properties │ │ │ │ │ ├── rm-audit.get_ja.properties │ │ │ │ │ ├── rm-audit.get_nb.properties │ │ │ │ │ ├── rm-audit.get_nl.properties │ │ │ │ │ ├── rm-audit.get_pt_BR.properties │ │ │ │ │ ├── rm-audit.get_ru.properties │ │ │ │ │ ├── rm-audit.get_zh_CN.properties │ │ │ │ │ ├── rm-console-access.ftl │ │ │ │ │ ├── rm-console-title.get.desc.xml │ │ │ │ │ ├── rm-console-title.get.html.ftl │ │ │ │ │ ├── rm-console-title.get.properties │ │ │ │ │ ├── rm-console-title.get_de.properties │ │ │ │ │ ├── rm-console-title.get_es.properties │ │ │ │ │ ├── rm-console-title.get_fr.properties │ │ │ │ │ ├── rm-console-title.get_it.properties │ │ │ │ │ ├── rm-console-title.get_ja.properties │ │ │ │ │ ├── rm-console-title.get_nb.properties │ │ │ │ │ ├── rm-console-title.get_nl.properties │ │ │ │ │ ├── rm-console-title.get_pt_BR.properties │ │ │ │ │ ├── rm-console-title.get_ru.properties │ │ │ │ │ ├── rm-console-title.get_zh_CN.properties │ │ │ │ │ ├── rm-console.lib.js │ │ │ │ │ ├── rm-custom-metadata.get.desc.xml │ │ │ │ │ ├── rm-custom-metadata.get.head.ftl │ │ │ │ │ ├── rm-custom-metadata.get.html.ftl │ │ │ │ │ ├── rm-custom-metadata.get.js │ │ │ │ │ ├── rm-custom-metadata.get.properties │ │ │ │ │ ├── rm-custom-metadata.get_de.properties │ │ │ │ │ ├── rm-custom-metadata.get_es.properties │ │ │ │ │ ├── rm-custom-metadata.get_fr.properties │ │ │ │ │ ├── rm-custom-metadata.get_it.properties │ │ │ │ │ ├── rm-custom-metadata.get_ja.properties │ │ │ │ │ ├── rm-custom-metadata.get_nb.properties │ │ │ │ │ ├── rm-custom-metadata.get_nl.properties │ │ │ │ │ ├── rm-custom-metadata.get_pt_BR.properties │ │ │ │ │ ├── rm-custom-metadata.get_ru.properties │ │ │ │ │ ├── rm-custom-metadata.get_zh_CN.properties │ │ │ │ │ ├── rm-define-roles.get.desc.xml │ │ │ │ │ ├── rm-define-roles.get.head.ftl │ │ │ │ │ ├── rm-define-roles.get.html.ftl │ │ │ │ │ ├── rm-define-roles.get.js │ │ │ │ │ ├── rm-define-roles.get.properties │ │ │ │ │ ├── rm-define-roles.get_de.properties │ │ │ │ │ ├── rm-define-roles.get_es.properties │ │ │ │ │ ├── rm-define-roles.get_fr.properties │ │ │ │ │ ├── rm-define-roles.get_it.properties │ │ │ │ │ ├── rm-define-roles.get_ja.properties │ │ │ │ │ ├── rm-define-roles.get_nb.properties │ │ │ │ │ ├── rm-define-roles.get_nl.properties │ │ │ │ │ ├── rm-define-roles.get_pt_BR.properties │ │ │ │ │ ├── rm-define-roles.get_ru.properties │ │ │ │ │ ├── rm-define-roles.get_zh_CN.properties │ │ │ │ │ ├── rm-email-mappings.get.desc.xml │ │ │ │ │ ├── rm-email-mappings.get.head.ftl │ │ │ │ │ ├── rm-email-mappings.get.html.ftl │ │ │ │ │ ├── rm-email-mappings.get.js │ │ │ │ │ ├── rm-email-mappings.get.properties │ │ │ │ │ ├── rm-email-mappings.get_de.properties │ │ │ │ │ ├── rm-email-mappings.get_es.properties │ │ │ │ │ ├── rm-email-mappings.get_fr.properties │ │ │ │ │ ├── rm-email-mappings.get_it.properties │ │ │ │ │ ├── rm-email-mappings.get_ja.properties │ │ │ │ │ ├── rm-email-mappings.get_nb.properties │ │ │ │ │ ├── rm-email-mappings.get_nl.properties │ │ │ │ │ ├── rm-email-mappings.get_pt_BR.properties │ │ │ │ │ ├── rm-email-mappings.get_ru.properties │ │ │ │ │ ├── rm-email-mappings.get_zh_CN.properties │ │ │ │ │ ├── rm-events.get.desc.xml │ │ │ │ │ ├── rm-events.get.head.ftl │ │ │ │ │ ├── rm-events.get.html.ftl │ │ │ │ │ ├── rm-events.get.js │ │ │ │ │ ├── rm-events.get.properties │ │ │ │ │ ├── rm-events.get_de.properties │ │ │ │ │ ├── rm-events.get_es.properties │ │ │ │ │ ├── rm-events.get_fr.properties │ │ │ │ │ ├── rm-events.get_it.properties │ │ │ │ │ ├── rm-events.get_ja.properties │ │ │ │ │ ├── rm-events.get_nb.properties │ │ │ │ │ ├── rm-events.get_nl.properties │ │ │ │ │ ├── rm-events.get_pt_BR.properties │ │ │ │ │ ├── rm-events.get_ru.properties │ │ │ │ │ ├── rm-events.get_zh_CN.properties │ │ │ │ │ ├── rm-list-of-values.get.desc.xml │ │ │ │ │ ├── rm-list-of-values.get.head.ftl │ │ │ │ │ ├── rm-list-of-values.get.html.ftl │ │ │ │ │ ├── rm-list-of-values.get.js │ │ │ │ │ ├── rm-list-of-values.get.properties │ │ │ │ │ ├── rm-list-of-values.get_de.properties │ │ │ │ │ ├── rm-list-of-values.get_es.properties │ │ │ │ │ ├── rm-list-of-values.get_fr.properties │ │ │ │ │ ├── rm-list-of-values.get_it.properties │ │ │ │ │ ├── rm-list-of-values.get_ja.properties │ │ │ │ │ ├── rm-list-of-values.get_nb.properties │ │ │ │ │ ├── rm-list-of-values.get_nl.properties │ │ │ │ │ ├── rm-list-of-values.get_pt_BR.properties │ │ │ │ │ ├── rm-list-of-values.get_ru.properties │ │ │ │ │ ├── rm-list-of-values.get_zh_CN.properties │ │ │ │ │ ├── rm-references.get.desc.xml │ │ │ │ │ ├── rm-references.get.head.ftl │ │ │ │ │ ├── rm-references.get.html.ftl │ │ │ │ │ ├── rm-references.get.js │ │ │ │ │ ├── rm-references.get.properties │ │ │ │ │ ├── rm-references.get_de.properties │ │ │ │ │ ├── rm-references.get_es.properties │ │ │ │ │ ├── rm-references.get_fr.properties │ │ │ │ │ ├── rm-references.get_it.properties │ │ │ │ │ ├── rm-references.get_ja.properties │ │ │ │ │ ├── rm-references.get_nb.properties │ │ │ │ │ ├── rm-references.get_nl.properties │ │ │ │ │ ├── rm-references.get_pt_BR.properties │ │ │ │ │ ├── rm-references.get_ru.properties │ │ │ │ │ ├── rm-references.get_zh_CN.properties │ │ │ │ │ ├── rm-user-rights.get.desc.xml │ │ │ │ │ ├── rm-user-rights.get.head.ftl │ │ │ │ │ ├── rm-user-rights.get.html.ftl │ │ │ │ │ ├── rm-user-rights.get.js │ │ │ │ │ ├── rm-user-rights.get.properties │ │ │ │ │ ├── rm-user-rights.get_de.properties │ │ │ │ │ ├── rm-user-rights.get_es.properties │ │ │ │ │ ├── rm-user-rights.get_fr.properties │ │ │ │ │ ├── rm-user-rights.get_it.properties │ │ │ │ │ ├── rm-user-rights.get_ja.properties │ │ │ │ │ ├── rm-user-rights.get_nb.properties │ │ │ │ │ ├── rm-user-rights.get_nl.properties │ │ │ │ │ ├── rm-user-rights.get_pt_BR.properties │ │ │ │ │ ├── rm-user-rights.get_ru.properties │ │ │ │ │ ├── rm-user-rights.get_zh_CN.properties │ │ │ │ │ ├── rm-users-and-groups.get.desc.xml │ │ │ │ │ ├── rm-users-and-groups.get.head.ftl │ │ │ │ │ ├── rm-users-and-groups.get.html.ftl │ │ │ │ │ ├── rm-users-and-groups.get.js │ │ │ │ │ ├── rm-users-and-groups.get.properties │ │ │ │ │ ├── rm-users-and-groups.get_de.properties │ │ │ │ │ ├── rm-users-and-groups.get_es.properties │ │ │ │ │ ├── rm-users-and-groups.get_fr.properties │ │ │ │ │ ├── rm-users-and-groups.get_it.properties │ │ │ │ │ ├── rm-users-and-groups.get_ja.properties │ │ │ │ │ ├── rm-users-and-groups.get_nb.properties │ │ │ │ │ ├── rm-users-and-groups.get_nl.properties │ │ │ │ │ ├── rm-users-and-groups.get_pt_BR.properties │ │ │ │ │ ├── rm-users-and-groups.get_ru.properties │ │ │ │ │ └── rm-users-and-groups.get_zh_CN.properties │ │ │ │ ├── dashlets │ │ │ │ │ ├── datasets.get.desc.xml │ │ │ │ │ ├── datasets.get.head.ftl │ │ │ │ │ ├── datasets.get.html.ftl │ │ │ │ │ ├── datasets.get.js │ │ │ │ │ ├── datasets.get.properties │ │ │ │ │ ├── datasets.get_de.properties │ │ │ │ │ ├── datasets.get_es.properties │ │ │ │ │ ├── datasets.get_fr.properties │ │ │ │ │ ├── datasets.get_it.properties │ │ │ │ │ ├── datasets.get_ja.properties │ │ │ │ │ ├── datasets.get_nb.properties │ │ │ │ │ ├── datasets.get_nl.properties │ │ │ │ │ ├── datasets.get_pt_BR.properties │ │ │ │ │ ├── datasets.get_ru.properties │ │ │ │ │ ├── datasets.get_zh_CN.properties │ │ │ │ │ └── rm-utils.js │ │ │ │ ├── document-details │ │ │ │ │ ├── document-actions.get.config.xml │ │ │ │ │ ├── document-actions.get.desc.xml │ │ │ │ │ ├── document-actions.get.head.ftl │ │ │ │ │ ├── document-actions.get.html.ftl │ │ │ │ │ ├── document-actions.get.js │ │ │ │ │ ├── document-actions.get.properties │ │ │ │ │ ├── document-actions.get_de.properties │ │ │ │ │ ├── document-actions.get_es.properties │ │ │ │ │ ├── document-actions.get_fr.properties │ │ │ │ │ ├── document-actions.get_it.properties │ │ │ │ │ ├── document-actions.get_ja.properties │ │ │ │ │ ├── document-actions.get_nb.properties │ │ │ │ │ ├── document-actions.get_nl.properties │ │ │ │ │ ├── document-actions.get_pt_BR.properties │ │ │ │ │ ├── document-actions.get_ru.properties │ │ │ │ │ └── document-actions.get_zh_CN.properties │ │ │ │ ├── documentlibrary │ │ │ │ │ ├── actions-common.get.desc.xml │ │ │ │ │ ├── actions-common.get.html.ftl │ │ │ │ │ ├── data │ │ │ │ │ │ ├── rm-surf-doclist.get.desc.xml │ │ │ │ │ │ ├── rm-surf-doclist.get.js │ │ │ │ │ │ ├── rm-surf-doclist.get.json.ftl │ │ │ │ │ │ └── rm-surf-doclist.lib.js │ │ │ │ │ ├── documentlist-v2.get.desc.xml │ │ │ │ │ ├── documentlist-v2.get.html.ftl │ │ │ │ │ ├── documentlist-v2.get.js │ │ │ │ │ ├── documentlist-v2.get.properties │ │ │ │ │ ├── documentlist-v2.get_de.properties │ │ │ │ │ ├── documentlist-v2.get_es.properties │ │ │ │ │ ├── documentlist-v2.get_fr.properties │ │ │ │ │ ├── documentlist-v2.get_it.properties │ │ │ │ │ ├── documentlist-v2.get_ja.properties │ │ │ │ │ ├── documentlist-v2.get_nb.properties │ │ │ │ │ ├── documentlist-v2.get_nl.properties │ │ │ │ │ ├── documentlist-v2.get_pt_BR.properties │ │ │ │ │ ├── documentlist-v2.get_ru.properties │ │ │ │ │ ├── documentlist-v2.get_zh_CN.properties │ │ │ │ │ ├── documentlist-v2.lib.ftl │ │ │ │ │ ├── documentlist-v2.lib.js │ │ │ │ │ ├── fileplan.get.desc.xml │ │ │ │ │ ├── fileplan.get.head.ftl │ │ │ │ │ ├── fileplan.get.html.ftl │ │ │ │ │ ├── fileplan.get.properties │ │ │ │ │ ├── fileplan.get_de.properties │ │ │ │ │ ├── fileplan.get_es.properties │ │ │ │ │ ├── fileplan.get_fr.properties │ │ │ │ │ ├── fileplan.get_it.properties │ │ │ │ │ ├── fileplan.get_ja.properties │ │ │ │ │ ├── fileplan.get_nb.properties │ │ │ │ │ ├── fileplan.get_nl.properties │ │ │ │ │ ├── fileplan.get_pt_BR.properties │ │ │ │ │ ├── fileplan.get_ru.properties │ │ │ │ │ ├── fileplan.get_zh_CN.properties │ │ │ │ │ ├── savedsearch.get.desc.xml │ │ │ │ │ ├── savedsearch.get.head.ftl │ │ │ │ │ ├── savedsearch.get.html.ftl │ │ │ │ │ ├── savedsearch.get.js │ │ │ │ │ ├── savedsearch.get.properties │ │ │ │ │ ├── savedsearch.get_de.properties │ │ │ │ │ ├── savedsearch.get_es.properties │ │ │ │ │ ├── savedsearch.get_fr.properties │ │ │ │ │ ├── savedsearch.get_it.properties │ │ │ │ │ ├── savedsearch.get_ja.properties │ │ │ │ │ ├── savedsearch.get_nb.properties │ │ │ │ │ ├── savedsearch.get_nl.properties │ │ │ │ │ ├── savedsearch.get_pt_BR.properties │ │ │ │ │ ├── savedsearch.get_ru.properties │ │ │ │ │ ├── savedsearch.get_zh_CN.properties │ │ │ │ │ ├── tree.get.desc.xml │ │ │ │ │ ├── tree.get.head.ftl │ │ │ │ │ ├── tree.get.html.ftl │ │ │ │ │ ├── tree.get.properties │ │ │ │ │ ├── tree.get_de.properties │ │ │ │ │ ├── tree.get_es.properties │ │ │ │ │ ├── tree.get_fr.properties │ │ │ │ │ ├── tree.get_it.properties │ │ │ │ │ ├── tree.get_ja.properties │ │ │ │ │ ├── tree.get_nb.properties │ │ │ │ │ ├── tree.get_nl.properties │ │ │ │ │ ├── tree.get_pt_BR.properties │ │ │ │ │ ├── tree.get_ru.properties │ │ │ │ │ └── tree.get_zh_CN.properties │ │ │ │ ├── edit-metadata │ │ │ │ │ ├── edit-metadata-mgr.get.desc.xml │ │ │ │ │ ├── edit-metadata-mgr.get.head.ftl │ │ │ │ │ ├── edit-metadata-mgr.get.html.ftl │ │ │ │ │ ├── edit-metadata-mgr.get.js │ │ │ │ │ ├── edit-metadata-mgr.get.properties │ │ │ │ │ ├── edit-metadata-mgr.get_de.properties │ │ │ │ │ ├── edit-metadata-mgr.get_es.properties │ │ │ │ │ ├── edit-metadata-mgr.get_fr.properties │ │ │ │ │ ├── edit-metadata-mgr.get_it.properties │ │ │ │ │ ├── edit-metadata-mgr.get_ja.properties │ │ │ │ │ ├── edit-metadata-mgr.get_nb.properties │ │ │ │ │ ├── edit-metadata-mgr.get_nl.properties │ │ │ │ │ ├── edit-metadata-mgr.get_pt_BR.properties │ │ │ │ │ ├── edit-metadata-mgr.get_ru.properties │ │ │ │ │ └── edit-metadata-mgr.get_zh_CN.properties │ │ │ │ ├── fileplan │ │ │ │ │ ├── disposition-edit.get.desc.xml │ │ │ │ │ ├── disposition-edit.get.head.ftl │ │ │ │ │ ├── disposition-edit.get.html.ftl │ │ │ │ │ ├── disposition-edit.get.js │ │ │ │ │ ├── disposition-edit.get.properties │ │ │ │ │ ├── disposition-edit.get_de.properties │ │ │ │ │ ├── disposition-edit.get_es.properties │ │ │ │ │ ├── disposition-edit.get_fr.properties │ │ │ │ │ ├── disposition-edit.get_it.properties │ │ │ │ │ ├── disposition-edit.get_ja.properties │ │ │ │ │ ├── disposition-edit.get_nb.properties │ │ │ │ │ ├── disposition-edit.get_nl.properties │ │ │ │ │ ├── disposition-edit.get_pt_BR.properties │ │ │ │ │ ├── disposition-edit.get_ru.properties │ │ │ │ │ ├── disposition-edit.get_zh_CN.properties │ │ │ │ │ ├── disposition.get.desc.xml │ │ │ │ │ ├── disposition.get.head.ftl │ │ │ │ │ ├── disposition.get.html.ftl │ │ │ │ │ ├── disposition.get.js │ │ │ │ │ ├── disposition.get.properties │ │ │ │ │ ├── disposition.get_de.properties │ │ │ │ │ ├── disposition.get_es.properties │ │ │ │ │ ├── disposition.get_fr.properties │ │ │ │ │ ├── disposition.get_it.properties │ │ │ │ │ ├── disposition.get_ja.properties │ │ │ │ │ ├── disposition.get_nb.properties │ │ │ │ │ ├── disposition.get_nl.properties │ │ │ │ │ ├── disposition.get_pt_BR.properties │ │ │ │ │ ├── disposition.get_ru.properties │ │ │ │ │ ├── disposition.get_zh_CN.properties │ │ │ │ │ ├── report.get.desc.xml │ │ │ │ │ ├── report.get.head.ftl │ │ │ │ │ ├── report.get.html.ftl │ │ │ │ │ ├── report.get.js │ │ │ │ │ ├── report.get.properties │ │ │ │ │ ├── report.get_de.properties │ │ │ │ │ ├── report.get_es.properties │ │ │ │ │ ├── report.get_fr.properties │ │ │ │ │ ├── report.get_it.properties │ │ │ │ │ ├── report.get_ja.properties │ │ │ │ │ ├── report.get_nb.properties │ │ │ │ │ ├── report.get_nl.properties │ │ │ │ │ ├── report.get_pt_BR.properties │ │ │ │ │ ├── report.get_ru.properties │ │ │ │ │ └── report.get_zh_CN.properties │ │ │ │ ├── folder-details │ │ │ │ │ ├── folder-actions.get.desc.xml │ │ │ │ │ ├── folder-actions.get.head.ftl │ │ │ │ │ ├── folder-actions.get.html.ftl │ │ │ │ │ ├── folder-actions.get.js │ │ │ │ │ ├── folder-actions.get.properties │ │ │ │ │ ├── folder-actions.get_de.properties │ │ │ │ │ ├── folder-actions.get_es.properties │ │ │ │ │ ├── folder-actions.get_fr.properties │ │ │ │ │ ├── folder-actions.get_it.properties │ │ │ │ │ ├── folder-actions.get_ja.properties │ │ │ │ │ ├── folder-actions.get_nb.properties │ │ │ │ │ ├── folder-actions.get_nl.properties │ │ │ │ │ ├── folder-actions.get_pt_BR.properties │ │ │ │ │ ├── folder-actions.get_ru.properties │ │ │ │ │ └── folder-actions.get_zh_CN.properties │ │ │ │ ├── form │ │ │ │ │ ├── controls │ │ │ │ │ │ └── vital-record-indicator.ftl │ │ │ │ │ ├── create-container.ftl │ │ │ │ │ └── record-metadata.ftl │ │ │ │ ├── permissions │ │ │ │ │ ├── permissions.get.desc.xml │ │ │ │ │ ├── permissions.get.head.ftl │ │ │ │ │ ├── permissions.get.html.ftl │ │ │ │ │ ├── permissions.get.properties │ │ │ │ │ ├── permissions.get_de.properties │ │ │ │ │ ├── permissions.get_es.properties │ │ │ │ │ ├── permissions.get_fr.properties │ │ │ │ │ ├── permissions.get_it.properties │ │ │ │ │ ├── permissions.get_ja.properties │ │ │ │ │ ├── permissions.get_nb.properties │ │ │ │ │ ├── permissions.get_nl.properties │ │ │ │ │ ├── permissions.get_pt_BR.properties │ │ │ │ │ ├── permissions.get_ru.properties │ │ │ │ │ └── permissions.get_zh_CN.properties │ │ │ │ ├── references │ │ │ │ │ ├── manage-references.get.desc.xml │ │ │ │ │ ├── manage-references.get.head.ftl │ │ │ │ │ ├── manage-references.get.html.ftl │ │ │ │ │ ├── manage-references.get.js │ │ │ │ │ ├── manage-references.get.properties │ │ │ │ │ ├── manage-references.get_de.properties │ │ │ │ │ ├── manage-references.get_es.properties │ │ │ │ │ ├── manage-references.get_fr.properties │ │ │ │ │ ├── manage-references.get_it.properties │ │ │ │ │ ├── manage-references.get_ja.properties │ │ │ │ │ ├── manage-references.get_nb.properties │ │ │ │ │ ├── manage-references.get_nl.properties │ │ │ │ │ ├── manage-references.get_pt_BR.properties │ │ │ │ │ ├── manage-references.get_ru.properties │ │ │ │ │ ├── manage-references.get_zh_CN.properties │ │ │ │ │ ├── new-reference.get.desc.xml │ │ │ │ │ ├── new-reference.get.head.ftl │ │ │ │ │ ├── new-reference.get.html.ftl │ │ │ │ │ ├── new-reference.get.js │ │ │ │ │ ├── new-reference.get.properties │ │ │ │ │ ├── new-reference.get_de.properties │ │ │ │ │ ├── new-reference.get_es.properties │ │ │ │ │ ├── new-reference.get_fr.properties │ │ │ │ │ ├── new-reference.get_it.properties │ │ │ │ │ ├── new-reference.get_ja.properties │ │ │ │ │ ├── new-reference.get_nb.properties │ │ │ │ │ ├── new-reference.get_nl.properties │ │ │ │ │ ├── new-reference.get_pt_BR.properties │ │ │ │ │ ├── new-reference.get_ru.properties │ │ │ │ │ └── new-reference.get_zh_CN.properties │ │ │ │ ├── rules │ │ │ │ │ ├── config │ │ │ │ │ │ ├── rule-config-action.get.config.xml │ │ │ │ │ │ ├── rule-config-action.get.desc.xml │ │ │ │ │ │ ├── rule-config-action.get.html.ftl │ │ │ │ │ │ ├── rule-config-action.get.js │ │ │ │ │ │ ├── rule-config-action.get.properties │ │ │ │ │ │ ├── rule-config-action.get_de.properties │ │ │ │ │ │ ├── rule-config-action.get_es.properties │ │ │ │ │ │ ├── rule-config-action.get_fr.properties │ │ │ │ │ │ ├── rule-config-action.get_it.properties │ │ │ │ │ │ ├── rule-config-action.get_ja.properties │ │ │ │ │ │ ├── rule-config-action.get_nb.properties │ │ │ │ │ │ ├── rule-config-action.get_nl.properties │ │ │ │ │ │ ├── rule-config-action.get_pt_BR.properties │ │ │ │ │ │ ├── rule-config-action.get_ru.properties │ │ │ │ │ │ ├── rule-config-action.get_zh_CN.properties │ │ │ │ │ │ ├── rule-config-condition.get.config.xml │ │ │ │ │ │ ├── rule-config-condition.get.desc.xml │ │ │ │ │ │ ├── rule-config-condition.get.html.ftl │ │ │ │ │ │ ├── rule-config-condition.get.js │ │ │ │ │ │ ├── rule-config-condition.get.properties │ │ │ │ │ │ ├── rule-config-condition.get_de.properties │ │ │ │ │ │ ├── rule-config-condition.get_es.properties │ │ │ │ │ │ ├── rule-config-condition.get_fr.properties │ │ │ │ │ │ ├── rule-config-condition.get_it.properties │ │ │ │ │ │ ├── rule-config-condition.get_ja.properties │ │ │ │ │ │ ├── rule-config-condition.get_nb.properties │ │ │ │ │ │ ├── rule-config-condition.get_nl.properties │ │ │ │ │ │ ├── rule-config-condition.get_pt_BR.properties │ │ │ │ │ │ ├── rule-config-condition.get_ru.properties │ │ │ │ │ │ └── rule-config-condition.get_zh_CN.properties │ │ │ │ │ ├── rule-details.get.desc.xml │ │ │ │ │ ├── rule-details.get.html.ftl │ │ │ │ │ ├── rule-details.get.js │ │ │ │ │ ├── rule-details.get.properties │ │ │ │ │ ├── rule-details.get_de.properties │ │ │ │ │ ├── rule-details.get_es.properties │ │ │ │ │ ├── rule-details.get_fr.properties │ │ │ │ │ ├── rule-details.get_it.properties │ │ │ │ │ ├── rule-details.get_ja.properties │ │ │ │ │ ├── rule-details.get_nb.properties │ │ │ │ │ ├── rule-details.get_nl.properties │ │ │ │ │ ├── rule-details.get_pt_BR.properties │ │ │ │ │ ├── rule-details.get_ru.properties │ │ │ │ │ ├── rule-details.get_zh_CN.properties │ │ │ │ │ ├── rule-edit.get.desc.xml │ │ │ │ │ ├── rule-edit.get.html.ftl │ │ │ │ │ ├── rule-edit.get.js │ │ │ │ │ ├── rule-edit.get.properties │ │ │ │ │ ├── rule-edit.get_de.properties │ │ │ │ │ ├── rule-edit.get_es.properties │ │ │ │ │ ├── rule-edit.get_fr.properties │ │ │ │ │ ├── rule-edit.get_it.properties │ │ │ │ │ ├── rule-edit.get_ja.properties │ │ │ │ │ ├── rule-edit.get_nb.properties │ │ │ │ │ ├── rule-edit.get_nl.properties │ │ │ │ │ ├── rule-edit.get_pt_BR.properties │ │ │ │ │ ├── rule-edit.get_ru.properties │ │ │ │ │ ├── rule-edit.get_zh_CN.properties │ │ │ │ │ ├── rules-none.get.desc.xml │ │ │ │ │ ├── rules-none.get.head.ftl │ │ │ │ │ ├── rules-none.get.html.ftl │ │ │ │ │ ├── rules-none.get.js │ │ │ │ │ ├── rules-none.get.properties │ │ │ │ │ ├── rules-none.get_de.properties │ │ │ │ │ ├── rules-none.get_es.properties │ │ │ │ │ ├── rules-none.get_fr.properties │ │ │ │ │ ├── rules-none.get_it.properties │ │ │ │ │ ├── rules-none.get_ja.properties │ │ │ │ │ ├── rules-none.get_nb.properties │ │ │ │ │ ├── rules-none.get_nl.properties │ │ │ │ │ ├── rules-none.get_pt_BR.properties │ │ │ │ │ ├── rules-none.get_ru.properties │ │ │ │ │ └── rules-none.get_zh_CN.properties │ │ │ │ ├── search │ │ │ │ │ ├── options.ftl │ │ │ │ │ ├── search.get.desc.xml │ │ │ │ │ ├── search.get.head.ftl │ │ │ │ │ ├── search.get.html.ftl │ │ │ │ │ ├── search.get.js │ │ │ │ │ ├── search.get.properties │ │ │ │ │ ├── search.get_de.properties │ │ │ │ │ ├── search.get_es.properties │ │ │ │ │ ├── search.get_fr.properties │ │ │ │ │ ├── search.get_it.properties │ │ │ │ │ ├── search.get_ja.properties │ │ │ │ │ ├── search.get_nb.properties │ │ │ │ │ ├── search.get_nl.properties │ │ │ │ │ ├── search.get_pt_BR.properties │ │ │ │ │ ├── search.get_ru.properties │ │ │ │ │ └── search.get_zh_CN.properties │ │ │ │ └── upload │ │ │ │ │ ├── dnd-upload.get.desc.xml │ │ │ │ │ ├── dnd-upload.get.html.ftl │ │ │ │ │ ├── dnd-upload.get.js │ │ │ │ │ ├── dnd-upload.get.properties │ │ │ │ │ ├── dnd-upload.get_de.properties │ │ │ │ │ ├── dnd-upload.get_es.properties │ │ │ │ │ ├── dnd-upload.get_fr.properties │ │ │ │ │ ├── dnd-upload.get_it.properties │ │ │ │ │ ├── dnd-upload.get_ja.properties │ │ │ │ │ ├── dnd-upload.get_nb.properties │ │ │ │ │ ├── dnd-upload.get_nl.properties │ │ │ │ │ ├── dnd-upload.get_pt_BR.properties │ │ │ │ │ ├── dnd-upload.get_ru.properties │ │ │ │ │ ├── dnd-upload.get_zh_CN.properties │ │ │ │ │ ├── file-upload.get.desc.xml │ │ │ │ │ ├── file-upload.get.head.ftl │ │ │ │ │ ├── file-upload.get.html.ftl │ │ │ │ │ ├── flash-upload.get.desc.xml │ │ │ │ │ ├── flash-upload.get.head.ftl │ │ │ │ │ ├── flash-upload.get.html.ftl │ │ │ │ │ ├── flash-upload.get.js │ │ │ │ │ ├── flash-upload.get.properties │ │ │ │ │ ├── flash-upload.get_de.properties │ │ │ │ │ ├── flash-upload.get_es.properties │ │ │ │ │ ├── flash-upload.get_fr.properties │ │ │ │ │ ├── flash-upload.get_it.properties │ │ │ │ │ ├── flash-upload.get_ja.properties │ │ │ │ │ ├── flash-upload.get_nb.properties │ │ │ │ │ ├── flash-upload.get_nl.properties │ │ │ │ │ ├── flash-upload.get_pt_BR.properties │ │ │ │ │ ├── flash-upload.get_ru.properties │ │ │ │ │ ├── flash-upload.get_zh_CN.properties │ │ │ │ │ ├── html-upload.get.desc.xml │ │ │ │ │ ├── html-upload.get.head.ftl │ │ │ │ │ ├── html-upload.get.html.ftl │ │ │ │ │ ├── html-upload.get.js │ │ │ │ │ ├── html-upload.get.properties │ │ │ │ │ ├── html-upload.get_de.properties │ │ │ │ │ ├── html-upload.get_es.properties │ │ │ │ │ ├── html-upload.get_fr.properties │ │ │ │ │ ├── html-upload.get_it.properties │ │ │ │ │ ├── html-upload.get_ja.properties │ │ │ │ │ ├── html-upload.get_nb.properties │ │ │ │ │ ├── html-upload.get_nl.properties │ │ │ │ │ ├── html-upload.get_pt_BR.properties │ │ │ │ │ ├── html-upload.get_ru.properties │ │ │ │ │ └── html-upload.get_zh_CN.properties │ │ │ ├── customizations │ │ │ │ ├── components │ │ │ │ │ ├── console │ │ │ │ │ │ └── usersgroups │ │ │ │ │ │ │ ├── groups.get.html.ftl │ │ │ │ │ │ │ └── groups.get.js │ │ │ │ │ ├── folder-details │ │ │ │ │ │ └── path.get.js │ │ │ │ │ ├── footer │ │ │ │ │ │ └── footer.get.head.ftl │ │ │ │ │ ├── manage-permissions │ │ │ │ │ │ ├── manage-permissions.get.html.ftl │ │ │ │ │ │ ├── manage-permissions.get.js │ │ │ │ │ │ ├── manage-permissions.get.properties │ │ │ │ │ │ ├── manage-permissions.get_de.properties │ │ │ │ │ │ ├── manage-permissions.get_es.properties │ │ │ │ │ │ ├── manage-permissions.get_fr.properties │ │ │ │ │ │ ├── manage-permissions.get_it.properties │ │ │ │ │ │ ├── manage-permissions.get_ja.properties │ │ │ │ │ │ ├── manage-permissions.get_nb.properties │ │ │ │ │ │ ├── manage-permissions.get_nl.properties │ │ │ │ │ │ ├── manage-permissions.get_pt_BR.properties │ │ │ │ │ │ ├── manage-permissions.get_ru.properties │ │ │ │ │ │ └── manage-permissions.get_zh_CN.properties │ │ │ │ │ ├── navigation │ │ │ │ │ │ └── collaboration-navigation.get.js │ │ │ │ │ ├── node-details │ │ │ │ │ │ ├── node-header.get.html.ftl │ │ │ │ │ │ ├── node-header.get.properties │ │ │ │ │ │ ├── node-header.get_de.properties │ │ │ │ │ │ ├── node-header.get_es.properties │ │ │ │ │ │ ├── node-header.get_fr.properties │ │ │ │ │ │ ├── node-header.get_it.properties │ │ │ │ │ │ ├── node-header.get_ja.properties │ │ │ │ │ │ ├── node-header.get_nb.properties │ │ │ │ │ │ ├── node-header.get_nl.properties │ │ │ │ │ │ ├── node-header.get_pt_BR.properties │ │ │ │ │ │ ├── node-header.get_ru.properties │ │ │ │ │ │ └── node-header.get_zh_CN.properties │ │ │ │ │ ├── people-finder │ │ │ │ │ │ ├── authority-finder.get.js │ │ │ │ │ │ └── authority-query.get.js │ │ │ │ │ ├── rules │ │ │ │ │ │ ├── rules-header.get.html.ftl │ │ │ │ │ │ ├── rules-header.get.js │ │ │ │ │ │ ├── rules-linked.get.html.ftl │ │ │ │ │ │ └── rules-linked.get.js │ │ │ │ │ └── site │ │ │ │ │ │ └── customise-pages.get.js │ │ │ │ ├── modules │ │ │ │ │ ├── create-site.get.html.ftl │ │ │ │ │ └── create-site.get.js │ │ │ │ └── share │ │ │ │ │ └── header │ │ │ │ │ ├── share-header.get.js │ │ │ │ │ ├── share-header.get.properties │ │ │ │ │ ├── share-header.get_de.properties │ │ │ │ │ ├── share-header.get_es.properties │ │ │ │ │ ├── share-header.get_fr.properties │ │ │ │ │ ├── share-header.get_it.properties │ │ │ │ │ ├── share-header.get_ja.properties │ │ │ │ │ ├── share-header.get_nb.properties │ │ │ │ │ ├── share-header.get_nl.properties │ │ │ │ │ ├── share-header.get_pt_BR.properties │ │ │ │ │ ├── share-header.get_ru.properties │ │ │ │ │ └── share-header.get_zh_CN.properties │ │ │ └── modules │ │ │ │ ├── console │ │ │ │ ├── list-of-value-properties.get.desc.xml │ │ │ │ ├── list-of-value-properties.get.html.ftl │ │ │ │ ├── list-of-value-properties.get.properties │ │ │ │ ├── list-of-value-properties.get_de.properties │ │ │ │ ├── list-of-value-properties.get_es.properties │ │ │ │ ├── list-of-value-properties.get_fr.properties │ │ │ │ ├── list-of-value-properties.get_it.properties │ │ │ │ ├── list-of-value-properties.get_ja.properties │ │ │ │ ├── list-of-value-properties.get_nb.properties │ │ │ │ ├── list-of-value-properties.get_nl.properties │ │ │ │ ├── list-of-value-properties.get_pt_BR.properties │ │ │ │ ├── list-of-value-properties.get_ru.properties │ │ │ │ └── list-of-value-properties.get_zh_CN.properties │ │ │ │ ├── documentlibrary │ │ │ │ ├── add-record-metadata.get.desc.xml │ │ │ │ ├── add-record-metadata.get.html.ftl │ │ │ │ ├── add-record-metadata.get.js │ │ │ │ ├── add-record-metadata.get.properties │ │ │ │ ├── add-record-metadata.get_de.properties │ │ │ │ ├── add-record-metadata.get_es.properties │ │ │ │ ├── add-record-metadata.get_fr.properties │ │ │ │ ├── add-record-metadata.get_it.properties │ │ │ │ ├── add-record-metadata.get_ja.properties │ │ │ │ ├── add-record-metadata.get_nb.properties │ │ │ │ ├── add-record-metadata.get_nl.properties │ │ │ │ ├── add-record-metadata.get_pt_BR.properties │ │ │ │ ├── add-record-metadata.get_ru.properties │ │ │ │ ├── add-record-metadata.get_zh_CN.properties │ │ │ │ ├── copy-move-link-file-to.get.desc.xml │ │ │ │ ├── copy-move-link-file-to.get.html.ftl │ │ │ │ ├── copy-move-link-file-to.get.js │ │ │ │ ├── copy-move-link-file-to.get.properties │ │ │ │ ├── copy-move-link-file-to.get_de.properties │ │ │ │ ├── copy-move-link-file-to.get_es.properties │ │ │ │ ├── copy-move-link-file-to.get_fr.properties │ │ │ │ ├── copy-move-link-file-to.get_it.properties │ │ │ │ ├── copy-move-link-file-to.get_ja.properties │ │ │ │ ├── copy-move-link-file-to.get_nb.properties │ │ │ │ ├── copy-move-link-file-to.get_nl.properties │ │ │ │ ├── copy-move-link-file-to.get_pt_BR.properties │ │ │ │ ├── copy-move-link-file-to.get_ru.properties │ │ │ │ ├── copy-move-link-file-to.get_zh_CN.properties │ │ │ │ ├── export.get.desc.xml │ │ │ │ ├── export.get.html.ftl │ │ │ │ ├── export.get.properties │ │ │ │ ├── export.get_de.properties │ │ │ │ ├── export.get_es.properties │ │ │ │ ├── export.get_fr.properties │ │ │ │ ├── export.get_it.properties │ │ │ │ ├── export.get_ja.properties │ │ │ │ ├── export.get_nb.properties │ │ │ │ ├── export.get_nl.properties │ │ │ │ ├── export.get_pt_BR.properties │ │ │ │ ├── export.get_ru.properties │ │ │ │ ├── export.get_zh_CN.properties │ │ │ │ ├── file-report.get.desc.xml │ │ │ │ ├── file-report.get.html.ftl │ │ │ │ ├── file-report.get.properties │ │ │ │ ├── file-report.get_de.properties │ │ │ │ ├── file-report.get_es.properties │ │ │ │ ├── file-report.get_fr.properties │ │ │ │ ├── file-report.get_it.properties │ │ │ │ ├── file-report.get_ja.properties │ │ │ │ ├── file-report.get_nb.properties │ │ │ │ ├── file-report.get_nl.properties │ │ │ │ ├── file-report.get_pt_BR.properties │ │ │ │ ├── file-report.get_ru.properties │ │ │ │ ├── file-report.get_zh_CN.properties │ │ │ │ ├── hold │ │ │ │ │ ├── add-to-hold.get.desc.xml │ │ │ │ │ ├── add-to-hold.get.html.ftl │ │ │ │ │ ├── add-to-hold.get.properties │ │ │ │ │ ├── add-to-hold.get_de.properties │ │ │ │ │ ├── add-to-hold.get_es.properties │ │ │ │ │ ├── add-to-hold.get_fr.properties │ │ │ │ │ ├── add-to-hold.get_it.properties │ │ │ │ │ ├── add-to-hold.get_ja.properties │ │ │ │ │ ├── add-to-hold.get_nb.properties │ │ │ │ │ ├── add-to-hold.get_nl.properties │ │ │ │ │ ├── add-to-hold.get_pt_BR.properties │ │ │ │ │ ├── add-to-hold.get_ru.properties │ │ │ │ │ ├── add-to-hold.get_zh_CN.properties │ │ │ │ │ ├── remove-from-hold.get.desc.xml │ │ │ │ │ ├── remove-from-hold.get.html.ftl │ │ │ │ │ ├── remove-from-hold.get.properties │ │ │ │ │ ├── remove-from-hold.get_de.properties │ │ │ │ │ ├── remove-from-hold.get_es.properties │ │ │ │ │ ├── remove-from-hold.get_fr.properties │ │ │ │ │ ├── remove-from-hold.get_it.properties │ │ │ │ │ ├── remove-from-hold.get_ja.properties │ │ │ │ │ ├── remove-from-hold.get_nb.properties │ │ │ │ │ ├── remove-from-hold.get_nl.properties │ │ │ │ │ ├── remove-from-hold.get_pt_BR.properties │ │ │ │ │ ├── remove-from-hold.get_ru.properties │ │ │ │ │ └── remove-from-hold.get_zh_CN.properties │ │ │ │ ├── recorded-version-config.get.desc.xml │ │ │ │ ├── recorded-version-config.get.html.ftl │ │ │ │ ├── recorded-version-config.get.js │ │ │ │ ├── recorded-version-config.get.properties │ │ │ │ ├── recorded-version-config.get_de.properties │ │ │ │ ├── recorded-version-config.get_es.properties │ │ │ │ ├── recorded-version-config.get_fr.properties │ │ │ │ ├── recorded-version-config.get_it.properties │ │ │ │ ├── recorded-version-config.get_ja.properties │ │ │ │ ├── recorded-version-config.get_nb.properties │ │ │ │ ├── recorded-version-config.get_nl.properties │ │ │ │ ├── recorded-version-config.get_pt_BR.properties │ │ │ │ ├── recorded-version-config.get_ru.properties │ │ │ │ ├── recorded-version-config.get_zh_CN.properties │ │ │ │ ├── rejected-record-info.get.desc.xml │ │ │ │ ├── rejected-record-info.get.html.ftl │ │ │ │ ├── rejected-record-info.get.properties │ │ │ │ ├── rejected-record-info.get_de.properties │ │ │ │ ├── rejected-record-info.get_es.properties │ │ │ │ ├── rejected-record-info.get_fr.properties │ │ │ │ ├── rejected-record-info.get_it.properties │ │ │ │ ├── rejected-record-info.get_ja.properties │ │ │ │ ├── rejected-record-info.get_nb.properties │ │ │ │ ├── rejected-record-info.get_nl.properties │ │ │ │ ├── rejected-record-info.get_pt_BR.properties │ │ │ │ ├── rejected-record-info.get_ru.properties │ │ │ │ └── rejected-record-info.get_zh_CN.properties │ │ │ │ └── search │ │ │ │ ├── save-search.get.desc.xml │ │ │ │ ├── save-search.get.html.ftl │ │ │ │ ├── save-search.get.properties │ │ │ │ ├── save-search.get_de.properties │ │ │ │ ├── save-search.get_es.properties │ │ │ │ ├── save-search.get_fr.properties │ │ │ │ ├── save-search.get_it.properties │ │ │ │ ├── save-search.get_ja.properties │ │ │ │ ├── save-search.get_nb.properties │ │ │ │ ├── save-search.get_nl.properties │ │ │ │ ├── save-search.get_pt_BR.properties │ │ │ │ ├── save-search.get_ru.properties │ │ │ │ └── save-search.get_zh_CN.properties │ │ │ └── share │ │ │ └── pages │ │ │ └── rm-customizations │ │ │ └── share │ │ │ └── header │ │ │ └── share-header.get.js │ │ ├── templates │ │ └── org │ │ │ └── alfresco │ │ │ └── rm │ │ │ ├── audit.ftl │ │ │ ├── disposition-edit.ftl │ │ │ ├── fileplan-report.ftl │ │ │ ├── new-reference.ftl │ │ │ ├── record-category-details.ftl │ │ │ ├── record-folder-details.ftl │ │ │ ├── record-series-details.ftl │ │ │ ├── references.ftl │ │ │ └── search.ftl │ │ └── web-extension │ │ ├── rm-context.xml │ │ ├── rm-share-config-custom.xml.sample │ │ └── site-webscripts │ │ └── org │ │ └── alfresco │ │ └── components │ │ └── rules │ │ ├── config │ │ ├── rule-config-action.get.config.xml │ │ ├── rule-config-action.get.properties │ │ ├── rule-config-action.get_de.properties │ │ ├── rule-config-action.get_es.properties │ │ ├── rule-config-action.get_fr.properties │ │ ├── rule-config-action.get_it.properties │ │ ├── rule-config-action.get_ja.properties │ │ ├── rule-config-action.get_nb.properties │ │ ├── rule-config-action.get_nl.properties │ │ ├── rule-config-action.get_pt_BR.properties │ │ ├── rule-config-action.get_ru.properties │ │ └── rule-config-action.get_zh_CN.properties │ │ ├── rule-details.get.html.ftl │ │ └── rule-edit.get.html.ftl │ ├── docker-compose.yml │ ├── jrebel-docker-compose.yml │ ├── jrebel-repo │ └── Dockerfile │ ├── pom.xml │ ├── source │ ├── java │ │ └── org │ │ │ └── alfresco │ │ │ └── module │ │ │ └── org_alfresco_module_rm_share │ │ │ ├── evaluator │ │ │ ├── ActionEvaluator.java │ │ │ ├── BaseRMEvaluator.java │ │ │ ├── BaseRecordedVersionHistoryEvaluator.java │ │ │ ├── DocLibFrozenIndicatorEvaluator.java │ │ │ ├── DocLibRecordIndicatorEvaluator.java │ │ │ ├── DocLibRmSiteExistsEvaluator.java │ │ │ ├── HoldsCommonEvaluator.java │ │ │ ├── IncompleteEventEvaluator.java │ │ │ ├── IndicatorEvaluator.java │ │ │ ├── IsElectronicEvaluator.java │ │ │ ├── IsUserRecordContributor.java │ │ │ ├── RecordedVersionHistoryAllRevisionsEvaluator.java │ │ │ ├── RecordedVersionHistoryMajorRevisionsEvaluator.java │ │ │ ├── UITypeEvaluator.java │ │ │ ├── UnlinkActionEvaluator.java │ │ │ └── VersionRecordEvaluator.java │ │ │ ├── forms │ │ │ ├── FormUIGet.java │ │ │ └── KindEvaluator.java │ │ │ └── resolver │ │ │ └── doclib │ │ │ ├── ExtendedDefaultDoclistActionGroupResolver.java │ │ │ ├── FilePlanDoclistActionGroupResolver.java │ │ │ └── FilePlanDoclistDataUrlResolver.java │ └── web │ │ ├── components │ │ ├── documentlibrary │ │ │ ├── dm-actions.css │ │ │ └── dm-actions.js │ │ └── images │ │ │ ├── header │ │ │ └── rm-management.png │ │ │ └── page-rmsearch-64.png │ │ ├── js │ │ └── alfresco │ │ │ └── rm │ │ │ ├── forms │ │ │ └── controls │ │ │ │ ├── AlfRmRecordPickerControl.js │ │ │ │ └── i18n │ │ │ │ ├── AlfRmRecordPickerControl.properties │ │ │ │ ├── AlfRmRecordPickerControl_de.properties │ │ │ │ ├── AlfRmRecordPickerControl_es.properties │ │ │ │ ├── AlfRmRecordPickerControl_fr.properties │ │ │ │ ├── AlfRmRecordPickerControl_it.properties │ │ │ │ ├── AlfRmRecordPickerControl_ja.properties │ │ │ │ ├── AlfRmRecordPickerControl_nb.properties │ │ │ │ ├── AlfRmRecordPickerControl_nl.properties │ │ │ │ ├── AlfRmRecordPickerControl_pt_BR.properties │ │ │ │ ├── AlfRmRecordPickerControl_ru.properties │ │ │ │ └── AlfRmRecordPickerControl_zh_CN.properties │ │ │ ├── images │ │ │ └── filetypes │ │ │ │ ├── record-16.png │ │ │ │ └── record-32.png │ │ │ ├── lists │ │ │ └── AlfRmRelationshipList.js │ │ │ ├── services │ │ │ ├── AlfRmActionBridge.js │ │ │ ├── RelationshipService.js │ │ │ └── i18n │ │ │ │ ├── RelationshipService.properties │ │ │ │ ├── RelationshipService_de.properties │ │ │ │ ├── RelationshipService_es.properties │ │ │ │ ├── RelationshipService_fr.properties │ │ │ │ ├── RelationshipService_it.properties │ │ │ │ ├── RelationshipService_ja.properties │ │ │ │ ├── RelationshipService_nb.properties │ │ │ │ ├── RelationshipService_nl.properties │ │ │ │ ├── RelationshipService_pt_BR.properties │ │ │ │ ├── RelationshipService_ru.properties │ │ │ │ └── RelationshipService_zh_CN.properties │ │ │ └── util │ │ │ └── RmUtils.js │ │ └── rm │ │ ├── components │ │ ├── console │ │ │ ├── groups.js │ │ │ ├── rm-audit.css │ │ │ ├── rm-audit.js │ │ │ ├── rm-custom-metadata.css │ │ │ ├── rm-custom-metadata.js │ │ │ ├── rm-define-roles.css │ │ │ ├── rm-define-roles.js │ │ │ ├── rm-email-mappings.css │ │ │ ├── rm-email-mappings.js │ │ │ ├── rm-events.css │ │ │ ├── rm-events.js │ │ │ ├── rm-list-of-values.css │ │ │ ├── rm-list-of-values.js │ │ │ ├── rm-references.css │ │ │ ├── rm-references.js │ │ │ ├── rm-user-rights.css │ │ │ ├── rm-user-rights.js │ │ │ ├── rm-users-and-groups.css │ │ │ └── rm-users-and-groups.js │ │ ├── dashlets │ │ │ ├── datasets.css │ │ │ └── datasets.js │ │ ├── document-details │ │ │ ├── document-actions.js │ │ │ ├── document-references.css │ │ │ ├── document-references.js │ │ │ ├── document-versions.css │ │ │ ├── document-versions.js │ │ │ └── relationships.css │ │ ├── documentlibrary │ │ │ ├── actions.js │ │ │ ├── actions │ │ │ │ ├── folder-manage-permissions-disabled-16.png │ │ │ │ ├── folder-manage-rules-16.png │ │ │ │ ├── rm-accession-16.png │ │ │ │ ├── rm-accession-record-16.png │ │ │ │ ├── rm-add-record-metadata-16.png │ │ │ │ ├── rm-add-relationship-16.png │ │ │ │ ├── rm-add-to-hold-16.png │ │ │ │ ├── rm-add-to-hold-folder-16.png │ │ │ │ ├── rm-close-folder-16.png │ │ │ │ ├── rm-copy-folder-to-16.png │ │ │ │ ├── rm-copy-record-to-16.png │ │ │ │ ├── rm-create-record-16.png │ │ │ │ ├── rm-cutoff-16.png │ │ │ │ ├── rm-cutoff-folder-16.png │ │ │ │ ├── rm-declare-16.png │ │ │ │ ├── rm-declare-version-record-16.png │ │ │ │ ├── rm-destroy-16.png │ │ │ │ ├── rm-destruction-report-16.png │ │ │ │ ├── rm-download-zip-16.png │ │ │ │ ├── rm-edit-disposition-as-of-date-16.png │ │ │ │ ├── rm-edit-reason-16.png │ │ │ │ ├── rm-edit-review-as-of-date-16.png │ │ │ │ ├── rm-export-16.png │ │ │ │ ├── rm-export-disabled-16.png │ │ │ │ ├── rm-file-report-16.png │ │ │ │ ├── rm-file-to-16.png │ │ │ │ ├── rm-hide-record-16.png │ │ │ │ ├── rm-import-16.png │ │ │ │ ├── rm-import-disabled-16.png │ │ │ │ ├── rm-link-to-16.png │ │ │ │ ├── rm-open-folder-16.png │ │ │ │ ├── rm-recorded-version-config-16.png │ │ │ │ ├── rm-reject-16.png │ │ │ │ ├── rm-relinquish-16.png │ │ │ │ ├── rm-remove-from-hold-16.png │ │ │ │ ├── rm-remove-from-hold-folder-16.png │ │ │ │ ├── rm-request-info-16.png │ │ │ │ ├── rm-review-all-16.png │ │ │ │ ├── rm-reviewed-16.png │ │ │ │ ├── rm-split-email-16.png │ │ │ │ ├── rm-transfer-16.png │ │ │ │ ├── rm-transfer-complete-16.png │ │ │ │ ├── rm-undeclare-16.png │ │ │ │ ├── rm-undo-cutoff-16.png │ │ │ │ ├── rm-unlink-from-16.png │ │ │ │ └── rm-view-audit-log-16.png │ │ │ ├── documentlist.css │ │ │ ├── documentlist.js │ │ │ ├── images │ │ │ │ ├── close-record-16.png │ │ │ │ ├── delete-record-16.png │ │ │ │ ├── file-document-16.png │ │ │ │ ├── generic-file-to-16.png │ │ │ │ ├── hold-32.png │ │ │ │ ├── hold-48.png │ │ │ │ ├── meta-stub-32.png │ │ │ │ ├── meta-stub-75x100.png │ │ │ │ ├── metadata-stub-folder-16.png │ │ │ │ ├── metadata-stub-folder-32.png │ │ │ │ ├── metadata-stub-folder-48.png │ │ │ │ ├── move-folder-to-16.png │ │ │ │ ├── move-record-to-16.png │ │ │ │ ├── non-electronic-32.png │ │ │ │ ├── non-electronic-75x100.png │ │ │ │ ├── non-electronic-record.png │ │ │ │ ├── open-record-16.png │ │ │ │ ├── record-16.png │ │ │ │ ├── record-32.png │ │ │ │ ├── record-64.png │ │ │ │ ├── record-add-ref-16.png │ │ │ │ ├── record-category-16.png │ │ │ │ ├── record-category-32.png │ │ │ │ ├── record-category-48.png │ │ │ │ ├── record-folder-16.png │ │ │ │ ├── record-folder-32.png │ │ │ │ ├── record-folder-48.png │ │ │ │ ├── record-series-16.png │ │ │ │ ├── record-series-32.png │ │ │ │ ├── record-series-48.png │ │ │ │ ├── select-all-rm-16.png │ │ │ │ ├── select-none-rm-16.png │ │ │ │ ├── select-records-16.png │ │ │ │ ├── select-undeclared-16.png │ │ │ │ ├── transfer-container-32.png │ │ │ │ ├── transfer-container-48.png │ │ │ │ ├── transfer-list-48.png │ │ │ │ ├── transfer-record-16.png │ │ │ │ ├── unfiled-record-folder-32.png │ │ │ │ ├── unfiled-record-folder-48.png │ │ │ │ └── warning-16.png │ │ │ ├── indicators │ │ │ │ ├── rm-accession-16.png │ │ │ │ ├── rm-accessioned-16.png │ │ │ │ ├── rm-all-revisions-16.png │ │ │ │ ├── rm-closed-16.png │ │ │ │ ├── rm-cutoff-16.png │ │ │ │ ├── rm-cutoff-folder-16.png │ │ │ │ ├── rm-destroyed-16.png │ │ │ │ ├── rm-digital-photograph-record-16.png │ │ │ │ ├── rm-disposition-schedule-16.png │ │ │ │ ├── rm-frozen-16.png │ │ │ │ ├── rm-major-revisions-16.png │ │ │ │ ├── rm-multi-parent-16.png │ │ │ │ ├── rm-open-16.png │ │ │ │ ├── rm-pdf-record-16.png │ │ │ │ ├── rm-record-16.png │ │ │ │ ├── rm-scanned-record-16.png │ │ │ │ ├── rm-transfer-16.png │ │ │ │ ├── rm-transferred-16.png │ │ │ │ ├── rm-version-record-16.png │ │ │ │ ├── rm-vital-record-16.png │ │ │ │ └── rm-web-record-16.png │ │ │ ├── toolbar.css │ │ │ ├── toolbar.js │ │ │ ├── tree.css │ │ │ └── tree.js │ │ ├── fileplan │ │ │ ├── disposition-edit.css │ │ │ ├── disposition-edit.js │ │ │ ├── disposition.css │ │ │ ├── disposition.js │ │ │ ├── events.css │ │ │ ├── events.js │ │ │ └── report.css │ │ ├── folder-details │ │ │ └── folder-actions.js │ │ ├── manage-permissions │ │ │ └── manage-permissions.js │ │ ├── node-details │ │ │ └── node-header.css │ │ ├── people-finder │ │ │ └── authority-finder.js │ │ ├── permissions │ │ │ ├── permissions.css │ │ │ └── permissions.js │ │ ├── references │ │ │ ├── manage-references.css │ │ │ ├── manage-references.js │ │ │ ├── new-reference.css │ │ │ └── new-reference.js │ │ ├── rules │ │ │ ├── config │ │ │ │ └── rule-config-util.js │ │ │ ├── rule-config-action-custom.js │ │ │ ├── rule-details.js │ │ │ ├── rule-edit.js │ │ │ ├── rules-header.js │ │ │ ├── rules-linked.js │ │ │ ├── rules-none.js │ │ │ └── rules-picker.js │ │ ├── search │ │ │ ├── images │ │ │ │ ├── collapsed.png │ │ │ │ └── expanded.png │ │ │ ├── options.css │ │ │ ├── results.css │ │ │ ├── results.js │ │ │ ├── search.css │ │ │ └── search.js │ │ └── upload │ │ │ ├── dnd-upload.js │ │ │ ├── file-upload.js │ │ │ ├── flash-upload.css │ │ │ ├── flash-upload.js │ │ │ ├── html-upload.css │ │ │ └── html-upload.js │ │ ├── css │ │ └── rm.css │ │ ├── js │ │ ├── alfresco-rm.js │ │ ├── event-delegator.js │ │ ├── property-menu.js │ │ ├── text-length-check.js │ │ └── validation.js │ │ ├── modules │ │ ├── create-site.js │ │ ├── document-picker │ │ │ └── object-renderer.js │ │ ├── documentlibrary │ │ │ ├── copy-move-link-file-to.js │ │ │ ├── file-report.css │ │ │ ├── file-report.js │ │ │ ├── hold │ │ │ │ ├── add-to-hold.js │ │ │ │ ├── hold.css │ │ │ │ ├── hold.js │ │ │ │ └── remove-from-hold.js │ │ │ └── select-audit-record-location.js │ │ └── search │ │ │ ├── save-search.css │ │ │ └── save-search.js │ │ └── templates │ │ ├── folder-details │ │ └── folder-details.js │ │ └── record-series-details │ │ └── record-series-details.css │ ├── tomcat │ └── context.xml │ └── unit-test │ └── java │ └── org │ └── alfresco │ ├── module │ └── org_alfresco_module_rm_share │ │ └── evaluator │ │ ├── ActionEvaluatorUnitTest.java │ │ ├── IncompleteEventEvaluatorUnitTest.java │ │ └── UnlinkActionEvaluatorUnitTest.java │ └── test │ └── BaseUnitTest.java └── srcclr.yml /.editorConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/.editorConfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/.jshintrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/README.md -------------------------------------------------------------------------------- /ide-config/eclipse/alfresco-java-profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/ide-config/eclipse/alfresco-java-profile.xml -------------------------------------------------------------------------------- /ide-config/eclipse/alfresco-javascript-profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/ide-config/eclipse/alfresco-javascript-profile.xml -------------------------------------------------------------------------------- /ide-config/eclipse/rm.eclipse.importorder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/ide-config/eclipse/rm.eclipse.importorder -------------------------------------------------------------------------------- /ide-config/intellij/RM-IntelliJ-settings.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/ide-config/intellij/RM-IntelliJ-settings.jar -------------------------------------------------------------------------------- /l10n.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/l10n.properties -------------------------------------------------------------------------------- /license/alfresco_community/header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/license/alfresco_community/header.txt -------------------------------------------------------------------------------- /license/alfresco_community/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/license/alfresco_community/license.txt -------------------------------------------------------------------------------- /license/alfresco_enterprise/header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/license/alfresco_enterprise/header.txt -------------------------------------------------------------------------------- /license/alfresco_enterprise/license.txt: -------------------------------------------------------------------------------- 1 | TODO - need enterprise license here -------------------------------------------------------------------------------- /license/description.ftl: -------------------------------------------------------------------------------- 1 | Alfresco Records Management Module -------------------------------------------------------------------------------- /license/licenses.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/license/licenses.properties -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/pom.xml -------------------------------------------------------------------------------- /rm-benchmark/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/.gitignore -------------------------------------------------------------------------------- /rm-benchmark/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/README -------------------------------------------------------------------------------- /rm-benchmark/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/pom.xml -------------------------------------------------------------------------------- /rm-benchmark/src/main/java/org/alfresco/bm/dataload/LoadSingleComponent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/main/java/org/alfresco/bm/dataload/LoadSingleComponent.java -------------------------------------------------------------------------------- /rm-benchmark/src/main/java/org/alfresco/bm/dataload/RMAbstractLoadComponent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/main/java/org/alfresco/bm/dataload/RMAbstractLoadComponent.java -------------------------------------------------------------------------------- /rm-benchmark/src/main/java/org/alfresco/bm/dataload/RMBaseEventProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/main/java/org/alfresco/bm/dataload/RMBaseEventProcessor.java -------------------------------------------------------------------------------- /rm-benchmark/src/main/java/org/alfresco/bm/dataload/RMEventConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/main/java/org/alfresco/bm/dataload/RMEventConstants.java -------------------------------------------------------------------------------- /rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/exceptions/DuplicateRecordException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/exceptions/DuplicateRecordException.java -------------------------------------------------------------------------------- /rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/exceptions/EventAlreadyScheduledException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/exceptions/EventAlreadyScheduledException.java -------------------------------------------------------------------------------- /rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/exceptions/RecordNotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/exceptions/RecordNotFoundException.java -------------------------------------------------------------------------------- /rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/fileplan/ScheduleFilePlanLoaders.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/fileplan/ScheduleFilePlanLoaders.java -------------------------------------------------------------------------------- /rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/fileplan/ScheduleRecordLoaders.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/fileplan/ScheduleRecordLoaders.java -------------------------------------------------------------------------------- /rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/records/DeclareInPlaceRecords.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/records/DeclareInPlaceRecords.java -------------------------------------------------------------------------------- /rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/records/ScheduleFilingUnfiledRecords.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/records/ScheduleFilingUnfiledRecords.java -------------------------------------------------------------------------------- /rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/records/ScheduleInPlaceRecordLoaders.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/records/ScheduleInPlaceRecordLoaders.java -------------------------------------------------------------------------------- /rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/role/RMRole.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/role/RMRole.java -------------------------------------------------------------------------------- /rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/services/BaseMongoService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/services/BaseMongoService.java -------------------------------------------------------------------------------- /rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/services/ExecutionState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/services/ExecutionState.java -------------------------------------------------------------------------------- /rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/services/ExtendedFileFolderService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/services/ExtendedFileFolderService.java -------------------------------------------------------------------------------- /rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/services/RecordContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/services/RecordContext.java -------------------------------------------------------------------------------- /rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/services/RecordData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/services/RecordData.java -------------------------------------------------------------------------------- /rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/services/RecordService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/services/RecordService.java -------------------------------------------------------------------------------- /rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/site/CreateRMSite.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/site/CreateRMSite.java -------------------------------------------------------------------------------- /rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/site/CreateRMSiteMember.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/site/CreateRMSiteMember.java -------------------------------------------------------------------------------- /rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/site/CreateRMSiteMembers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/site/CreateRMSiteMembers.java -------------------------------------------------------------------------------- /rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/site/PrepareRMSite.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/site/PrepareRMSite.java -------------------------------------------------------------------------------- /rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/site/PrepareRMSiteMembers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/site/PrepareRMSiteMembers.java -------------------------------------------------------------------------------- /rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/unfiled/ScheduleUnfiledRecordFolderLoaders.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/unfiled/ScheduleUnfiledRecordFolderLoaders.java -------------------------------------------------------------------------------- /rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/unfiled/ScheduleUnfiledRecordLoaders.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/main/java/org/alfresco/bm/dataload/rm/unfiled/ScheduleUnfiledRecordLoaders.java -------------------------------------------------------------------------------- /rm-benchmark/src/main/resources/config/defaults/dataload.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/main/resources/config/defaults/dataload.properties -------------------------------------------------------------------------------- /rm-benchmark/src/main/resources/config/spring/test-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/main/resources/config/spring/test-context.xml -------------------------------------------------------------------------------- /rm-benchmark/src/main/resources/config/startup/app.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/main/resources/config/startup/app.properties -------------------------------------------------------------------------------- /rm-benchmark/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /rm-benchmark/src/test/java/org/alfresco/bm/dataload/LoadSingleComponentUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/test/java/org/alfresco/bm/dataload/LoadSingleComponentUnitTest.java -------------------------------------------------------------------------------- /rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/fileplan/ScheduleFilePlanLoadersUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/fileplan/ScheduleFilePlanLoadersUnitTest.java -------------------------------------------------------------------------------- /rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/fileplan/ScheduleRecordLoadersUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/fileplan/ScheduleRecordLoadersUnitTest.java -------------------------------------------------------------------------------- /rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/records/DeclareInPlaceRecordsUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/records/DeclareInPlaceRecordsUnitTest.java -------------------------------------------------------------------------------- /rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/records/ScheduleFilingUnfiledRecordsUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/records/ScheduleFilingUnfiledRecordsUnitTest.java -------------------------------------------------------------------------------- /rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/records/ScheduleInPlaceRecordLoadersUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/records/ScheduleInPlaceRecordLoadersUnitTest.java -------------------------------------------------------------------------------- /rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/service/RecordServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/service/RecordServiceTest.java -------------------------------------------------------------------------------- /rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/site/CreateRMSiteMemberUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/site/CreateRMSiteMemberUnitTest.java -------------------------------------------------------------------------------- /rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/site/CreateRMSiteMembersUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/site/CreateRMSiteMembersUnitTest.java -------------------------------------------------------------------------------- /rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/site/CreateRMSiteUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/site/CreateRMSiteUnitTest.java -------------------------------------------------------------------------------- /rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/site/PrepareRMSiteMembersUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/site/PrepareRMSiteMembersUnitTest.java -------------------------------------------------------------------------------- /rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/site/PrepareRMSiteUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/site/PrepareRMSiteUnitTest.java -------------------------------------------------------------------------------- /rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/unfiled/ScheduleUnfiledRecordLoadersUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/unfiled/ScheduleUnfiledRecordLoadersUnitTest.java -------------------------------------------------------------------------------- /rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/utils/FileUnfiledRecordUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/utils/FileUnfiledRecordUnitTest.java -------------------------------------------------------------------------------- /rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/utils/LoadRecordFolderUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/utils/LoadRecordFolderUnitTest.java -------------------------------------------------------------------------------- /rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/utils/LoadRecordUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/utils/LoadRecordUnitTest.java -------------------------------------------------------------------------------- /rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/utils/LoadRootCategoryUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/utils/LoadRootCategoryUnitTest.java -------------------------------------------------------------------------------- /rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/utils/LoadRootUnfiledRecordFolderUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/utils/LoadRootUnfiledRecordFolderUnitTest.java -------------------------------------------------------------------------------- /rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/utils/LoadSubCategoryUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/utils/LoadSubCategoryUnitTest.java -------------------------------------------------------------------------------- /rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/utils/LoadUnfiledRecordFolderUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/utils/LoadUnfiledRecordFolderUnitTest.java -------------------------------------------------------------------------------- /rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/utils/LoadUnfiledRecordUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/utils/LoadUnfiledRecordUnitTest.java -------------------------------------------------------------------------------- /rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/utils/RMBaseEventProcessorUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/test/java/org/alfresco/bm/dataload/rm/utils/RMBaseEventProcessorUnitTest.java -------------------------------------------------------------------------------- /rm-benchmark/src/test/resources/testng.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-benchmark/src/test/resources/testng.xml -------------------------------------------------------------------------------- /rm-community/.editorConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/.editorConfig -------------------------------------------------------------------------------- /rm-community/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/.jshintrc -------------------------------------------------------------------------------- /rm-community/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/LICENSE.txt -------------------------------------------------------------------------------- /rm-community/documentation/PatchService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/documentation/PatchService.md -------------------------------------------------------------------------------- /rm-community/documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/documentation/README.md -------------------------------------------------------------------------------- /rm-community/documentation/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/documentation/build/README.md -------------------------------------------------------------------------------- /rm-community/documentation/build/resource/build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/documentation/build/resource/build.png -------------------------------------------------------------------------------- /rm-community/documentation/build/resource/build.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/documentation/build/resource/build.puml -------------------------------------------------------------------------------- /rm-community/documentation/destruction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/documentation/destruction/README.md -------------------------------------------------------------------------------- /rm-community/documentation/destruction/resource/class/destruction-class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/documentation/destruction/resource/class/destruction-class.png -------------------------------------------------------------------------------- /rm-community/documentation/destruction/resource/class/destruction-class.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/documentation/destruction/resource/class/destruction-class.puml -------------------------------------------------------------------------------- /rm-community/documentation/destruction/resource/sequence/destruction-sequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/documentation/destruction/resource/sequence/destruction-sequence.png -------------------------------------------------------------------------------- /rm-community/documentation/destruction/resource/sequence/destruction-sequence.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/documentation/destruction/resource/sequence/destruction-sequence.puml -------------------------------------------------------------------------------- /rm-community/documentation/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/documentation/overview.md -------------------------------------------------------------------------------- /rm-community/documentation/resource/class/governance-services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/documentation/resource/class/governance-services.png -------------------------------------------------------------------------------- /rm-community/documentation/resource/class/governance-services.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/documentation/resource/class/governance-services.puml -------------------------------------------------------------------------------- /rm-community/documentation/resource/component/ig-component.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/documentation/resource/component/ig-component.png -------------------------------------------------------------------------------- /rm-community/documentation/resource/component/ig-component.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/documentation/resource/component/ig-component.puml -------------------------------------------------------------------------------- /rm-community/documentation/resource/image/CapabilitiesAndRoles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/documentation/resource/image/CapabilitiesAndRoles.png -------------------------------------------------------------------------------- /rm-community/documentation/security/extendedPermissionService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/documentation/security/extendedPermissionService.md -------------------------------------------------------------------------------- /rm-community/documentation/security/rolesAndCapabilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/documentation/security/rolesAndCapabilities.md -------------------------------------------------------------------------------- /rm-community/documentation/versionRecords/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/documentation/versionRecords/README.md -------------------------------------------------------------------------------- /rm-community/documentation/versionRecords/RecordedVersions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/documentation/versionRecords/RecordedVersions.png -------------------------------------------------------------------------------- /rm-community/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/pom.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/.env -------------------------------------------------------------------------------- /rm-community/rm-community-repo/.maven-dockerignore: -------------------------------------------------------------------------------- 1 | target/docker/** -------------------------------------------------------------------------------- /rm-community/rm-community-repo/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/Dockerfile -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/action-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/action-context.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/alfresco-global.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/alfresco-global.properties -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/audit/rm-audit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/audit/rm-audit.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/site/surf-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/site/surf-config.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/content-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/content-context.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/DODExampleFilePlan.acp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/DODExampleFilePlan.acp -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/DODExampleFilePlan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/DODExampleFilePlan.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/dod5015-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/dod5015-context.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/dod5015Model.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/dod5015/dod5015Model.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/log4j.properties -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions.properties -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_de.properties -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_es.properties -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_fr.properties -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_it.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_it.properties -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_ja.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_ja.properties -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_nb.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_nb.properties -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_nl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_nl.properties -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_ru.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/actions_ru.properties -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/dataset-service_it.properties: -------------------------------------------------------------------------------- 1 | dataset.dod5015.label=Dati di esempio DOD 5015 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/dataset-service_pt_BR.properties: -------------------------------------------------------------------------------- 1 | dataset.dod5015.label=Exemplo de dados do DOD 5015 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-service_de.properties: -------------------------------------------------------------------------------- 1 | report.default=Bericht 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-service_es.properties: -------------------------------------------------------------------------------- 1 | report.default=Informe 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-service_pt_BR.properties: -------------------------------------------------------------------------------- 1 | report.default=Relat\u00f3rio 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/report-service_zh_CN.properties: -------------------------------------------------------------------------------- 1 | report.default=\u62a5\u544a 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-actions.properties -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-events.properties -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/rm-system.properties -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/messages/template.properties -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/model/recordsModel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/model/recordsModel.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/model/reportModel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/model/reportModel.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/module-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/module-context.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/module.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/module.properties -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-context.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v20-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v20-context.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v21-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v21-context.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v22-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v22-context.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v23-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v23-context.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v24-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v24-context.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v32-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v32-context.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v33-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v33-context.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v35-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v35-context.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/query/rm-common-SqlMap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/query/rm-common-SqlMap.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/query/rm-query-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/query/rm-query-context.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-action-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-action-context.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-audit-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-audit-context.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-capabilities-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-capabilities-context.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-deprecated-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-deprecated-context.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-id-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-id-context.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-job-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-job-context.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-model-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-model-context.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-public-rest-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-public-rest-context.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-report-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-report-context.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-service-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-service-context.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-ui-evaluators-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-ui-evaluators-context.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-version-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-version-context.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-webscript-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-webscript-context.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-workflow-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-workflow-context.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/security/rm-policy-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/security/rm-policy-context.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/version.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/version.properties -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.lib.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.lib.ftl -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dataset.post.desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dataset.post.desc.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dataset.post.json.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dataset.post.json.ftl -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/datasets.get.desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/datasets.get.desc.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/datasets.get.json.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/datasets.get.json.ftl -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/export.post.desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/export.post.desc.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/fileplanreport.get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/fileplanreport.get.js -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/fileplanreport.lib.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/fileplanreport.lib.ftl -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/hold.post.desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/hold.post.desc.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/hold.post.json.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/hold.post.json.ftl -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/hold.put.desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/hold.put.desc.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/hold.put.json.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/hold.put.json.ftl -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/holds.get.desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/holds.get.desc.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/holds.get.json.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/holds.get.json.ftl -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/import.post.desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/import.post.desc.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/import.post.html.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/import.post.html.ftl -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/import.post.json.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/import.post.json.ftl -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/listofvalues.lib.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/listofvalues.lib.ftl -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmaction.post.desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmaction.post.desc.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmaction.post.json.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmaction.post.json.ftl -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.lib.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.lib.ftl -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/transfer.get.desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/transfer.get.desc.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/workflow/requestInfo.bpmn20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/workflow/requestInfo.bpmn20.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages.properties -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_de.properties -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_es.properties -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_fr.properties -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_it.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_it.properties -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_ja.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_ja.properties -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_nb.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_nb.properties -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_nl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_nl.properties -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_pt_BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_pt_BR.properties -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_ru.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_ru.properties -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/workflow/rm-workflow-messages_zh_CN.properties -------------------------------------------------------------------------------- /rm-community/rm-community-repo/config/alfresco/workflow/rmWorkflowModel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/config/alfresco/workflow/rmWorkflowModel.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/docker-compose.yml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/pom.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/Group.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/Group.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/dataset/DataSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/dataset/DataSet.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/hold/HoldService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/hold/HoldService.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/Report.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/Report.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/role/Role.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/role/Role.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/hold/Hold.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/hold/Hold.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/search/SortItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/search/SortItem.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/FileUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/FileUtils.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/repo/action/ExtendedActionServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/repo/action/ExtendedActionServiceImpl.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/repo/action/parameter/DateParameterProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/repo/action/parameter/DateParameterProcessor.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/repo/action/parameter/NodeParameterProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/repo/action/parameter/NodeParameterProcessor.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/repo/action/parameter/ParameterProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/repo/action/parameter/ParameterProcessor.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/repo/imap/ExtendedImapServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/repo/imap/ExtendedImapServiceImpl.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/repo/jscript/ExtendedSearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/repo/jscript/ExtendedSearch.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/repo/rule/ExtendedRuleServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/repo/rule/ExtendedRuleServiceImpl.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/repo/security/authority/RMAuthority.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/authority/RMAuthority.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/repo/security/authority/RMAuthorityDAOImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/authority/RMAuthorityDAOImpl.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/dictionary/RmClassesGet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/dictionary/RmClassesGet.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/dictionary/RmPropertiesGet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/dictionary/RmPropertiesGet.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/roles/AbstractRmAuthorities.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/roles/AbstractRmAuthorities.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/roles/DynamicAuthoritiesGet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/roles/DynamicAuthoritiesGet.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/roles/RmAuthoritiesDelete.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/roles/RmAuthoritiesDelete.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/roles/RmAuthoritiesPost.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/roles/RmAuthoritiesPost.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/rule/RmActionDefinitionsGet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/rule/RmActionDefinitionsGet.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/rule/WhitelistedDMActions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/rule/WhitelistedDMActions.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/RMNodes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/RMNodes.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/RMSites.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/RMSites.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/fileplans/FilePlanChildrenRelation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/fileplans/FilePlanChildrenRelation.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/fileplans/FilePlanEntityResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/fileplans/FilePlanEntityResource.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/fileplans/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/fileplans/package-info.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/files/FilesEntityResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/files/FilesEntityResource.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/files/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/files/package-info.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/impl/ApiNodesModelFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/impl/ApiNodesModelFactory.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/impl/FilePlanComponentsApiUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/impl/FilePlanComponentsApiUtils.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/impl/RMSitesImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/impl/RMSitesImpl.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/impl/SearchTypesFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/impl/SearchTypesFactory.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/FilePlan.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/FilePlan.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/RMNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/RMNode.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/RMSite.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/RMSite.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/RMSiteCompliance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/RMSiteCompliance.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/Record.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/Record.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/RecordCategory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/RecordCategory.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/RecordCategoryChild.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/RecordCategoryChild.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/RecordFolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/RecordFolder.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/SecurityControlSetting.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/SecurityControlSetting.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/TargetContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/TargetContainer.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/Transfer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/Transfer.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/TransferChild.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/TransferChild.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/TransferContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/TransferContainer.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/UnfiledChild.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/UnfiledChild.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/UnfiledContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/UnfiledContainer.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/UnfiledContainerChild.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/UnfiledContainerChild.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/UnfiledRecordFolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/UnfiledRecordFolder.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/UnfiledRecordFolderChild.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/UnfiledRecordFolderChild.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/UploadInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/UploadInfo.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/recordcategories/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/recordcategories/package-info.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/recordfolders/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/recordfolders/package-info.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/records/RecordsEntityResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/records/RecordsEntityResource.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/records/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/records/package-info.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/sites/RMSiteEntityResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/sites/RMSiteEntityResource.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/sites/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/sites/package-info.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/transfercontainers/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/transfercontainers/package-info.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/transfers/TransferChildrenRelation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/transfers/TransferChildrenRelation.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/transfers/TransferEntityResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/transfers/TransferEntityResource.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/transfers/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/transfers/package-info.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/unfiledcontainers/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/unfiledcontainers/package-info.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/unfiledrecordfolders/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/unfiledrecordfolders/package-info.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/util/CustomDateTimeSerializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/util/CustomDateTimeSerializer.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/util/CustomLocalDateDeserializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/util/CustomLocalDateDeserializer.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/util/CustomLocalDateSerializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/util/CustomLocalDateSerializer.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/util/LockCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/util/LockCallback.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/util/SortDirection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/util/SortDirection.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/util/SortUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/util/SortUtils.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/util/StringUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/util/StringUtils.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/util/WebScriptUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/util/WebScriptUtils.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/workflow/RMWorkflowModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/workflow/RMWorkflowModel.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/workflow/requestInfo/RequestInfoNotifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/workflow/requestInfo/RequestInfoNotifier.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/source/java/org/alfresco/workflow/requestInfo/RequestInfoUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/source/java/org/alfresco/workflow/requestInfo/RequestInfoUtils.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/src/test/properties/local/alfresco-global.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/src/test/properties/local/alfresco-global.properties -------------------------------------------------------------------------------- /rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/AllTestSuite.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/AllTestSuite.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/test/resources/alfresco/extension/rm-method-security.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/test/resources/alfresco/extension/rm-method-security.properties -------------------------------------------------------------------------------- /rm-community/rm-community-repo/test/resources/alfresco/test/content/Image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/test/resources/alfresco/test/content/Image.jpg -------------------------------------------------------------------------------- /rm-community/rm-community-repo/test/resources/alfresco/version.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/test/resources/alfresco/version.properties -------------------------------------------------------------------------------- /rm-community/rm-community-repo/test/resources/org/alfresco/repository/generic-paged-results.lib.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/test/resources/org/alfresco/repository/generic-paged-results.lib.ftl -------------------------------------------------------------------------------- /rm-community/rm-community-repo/test/resources/test-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/test/resources/test-context.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/test/resources/test-filePlan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/test/resources/test-filePlan.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/test/resources/test-job-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/test/resources/test-job-context.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/test/resources/test-model.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/test/resources/test-model.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/test/resources/test-rm3314-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/test/resources/test-rm3314-context.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/test/resources/test.properties: -------------------------------------------------------------------------------- 1 | test.company=Alfresco 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-repo/test/resources/testCaveatConfig1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/test/resources/testCaveatConfig1.json -------------------------------------------------------------------------------- /rm-community/rm-community-repo/test/resources/testCaveatConfig2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/test/resources/testCaveatConfig2.json -------------------------------------------------------------------------------- /rm-community/rm-community-repo/tomcat/context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/tomcat/context.xml -------------------------------------------------------------------------------- /rm-community/rm-community-repo/unit-test/java/org/alfresco/repo/imap/ExtendedImapServiceImplUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/unit-test/java/org/alfresco/repo/imap/ExtendedImapServiceImplUnitTest.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/unit-test/java/org/alfresco/rm/rest/api/impl/RMSitesImplUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/unit-test/java/org/alfresco/rm/rest/api/impl/RMSitesImplUnitTest.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/unit-test/java/org/alfresco/rm/rest/api/impl/RMYamlUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/unit-test/java/org/alfresco/rm/rest/api/impl/RMYamlUnitTest.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/unit-test/java/org/alfresco/rm/rest/api/impl/RecordsImplUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/unit-test/java/org/alfresco/rm/rest/api/impl/RecordsImplUnitTest.java -------------------------------------------------------------------------------- /rm-community/rm-community-repo/unit-test/resources/rest/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-repo/unit-test/resources/rest/schema.json -------------------------------------------------------------------------------- /rm-community/rm-community-rest-api-explorer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-rest-api-explorer/README.md -------------------------------------------------------------------------------- /rm-community/rm-community-rest-api-explorer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-rest-api-explorer/pom.xml -------------------------------------------------------------------------------- /rm-community/rm-community-rest-api-explorer/src/main/webapp/definitions/gs-core-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-rest-api-explorer/src/main/webapp/definitions/gs-core-api.yaml -------------------------------------------------------------------------------- /rm-community/rm-community-rest-api-explorer/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-rest-api-explorer/src/main/webapp/index.html -------------------------------------------------------------------------------- /rm-community/rm-community-share/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/.env -------------------------------------------------------------------------------- /rm-community/rm-community-share/.maven-dockerignore: -------------------------------------------------------------------------------- 1 | target/docker/** -------------------------------------------------------------------------------- /rm-community/rm-community-share/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/Dockerfile -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/dod5015/dod5015-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/dod5015/dod5015-context.xml -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/dod5015/dod5015-form-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/dod5015/dod5015-form-config.xml -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/dod5015/dod5015-share-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/dod5015/dod5015-share-config.xml -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/dod5015/messages/dod5015.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/dod5015/messages/dod5015.properties -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/dod5015/messages/dod5015_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/dod5015/messages/dod5015_de.properties -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/dod5015/messages/dod5015_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/dod5015/messages/dod5015_es.properties -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/dod5015/messages/dod5015_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/dod5015/messages/dod5015_fr.properties -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/dod5015/messages/dod5015_it.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/dod5015/messages/dod5015_it.properties -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/dod5015/messages/dod5015_ja.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/dod5015/messages/dod5015_ja.properties -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/dod5015/messages/dod5015_nb.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/dod5015/messages/dod5015_nb.properties -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/dod5015/messages/dod5015_nl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/dod5015/messages/dod5015_nl.properties -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/dod5015/messages/dod5015_pt_BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/dod5015/messages/dod5015_pt_BR.properties -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/dod5015/messages/dod5015_ru.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/dod5015/messages/dod5015_ru.properties -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/dod5015/messages/dod5015_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/dod5015/messages/dod5015_zh_CN.properties -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/messages/rm.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/messages/rm.properties -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/messages/rm_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/messages/rm_de.properties -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/messages/rm_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/messages/rm_es.properties -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/messages/rm_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/messages/rm_fr.properties -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/messages/rm_it.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/messages/rm_it.properties -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/messages/rm_ja.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/messages/rm_ja.properties -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/messages/rm_nb.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/messages/rm_nb.properties -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/messages/rm_nl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/messages/rm_nl.properties -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/messages/rm_pt_BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/messages/rm_pt_BR.properties -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/messages/rm_ru.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/messages/rm_ru.properties -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/messages/rm_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/messages/rm_zh_CN.properties -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/module/org_alfresco_module_rm_share/file-mapping.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/module/org_alfresco_module_rm_share/file-mapping.properties -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/module/org_alfresco_module_rm_share/module.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/module/org_alfresco_module_rm_share/module.properties -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/rm-form-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/rm-form-config.xml -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/rm-share-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/rm-share-config.xml -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/rm-share-workflow-form-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/rm-share-workflow-form-config.xml -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-data/extensions/alfresco-rm-extension.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/site-data/extensions/alfresco-rm-extension.xml -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-data/pages/rm-audit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/site-data/pages/rm-audit.xml -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-data/pages/rm-console.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/site-data/pages/rm-console.xml -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-data/pages/rm-disposition-edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/site-data/pages/rm-disposition-edit.xml -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-data/pages/rm-fileplan-report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/site-data/pages/rm-fileplan-report.xml -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-data/pages/rm-metadata-stub-folder-details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/site-data/pages/rm-metadata-stub-folder-details.xml -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-data/pages/rm-record-category-details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/site-data/pages/rm-record-category-details.xml -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-data/pages/rm-record-folder-details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/site-data/pages/rm-record-folder-details.xml -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-data/pages/rm-record-series-details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/site-data/pages/rm-record-series-details.xml -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-data/pages/rm-reference-new.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/site-data/pages/rm-reference-new.xml -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-data/pages/rm-references.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/site-data/pages/rm-references.xml -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-data/pages/rm-search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/site-data/pages/rm-search.xml -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-data/pages/rmsearch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/site-data/pages/rmsearch.xml -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-data/presets/rm-presets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/site-data/presets/rm-presets.xml -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-data/template-instances/rm-audit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/site-data/template-instances/rm-audit.xml -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-data/template-instances/rm-disposition-edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/site-data/template-instances/rm-disposition-edit.xml -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-data/template-instances/rm-fileplan-report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/site-data/template-instances/rm-fileplan-report.xml -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-data/template-instances/rm-new-reference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/site-data/template-instances/rm-new-reference.xml -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-data/template-instances/rm-record-category-details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/site-data/template-instances/rm-record-category-details.xml -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-data/template-instances/rm-record-folder-details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/site-data/template-instances/rm-record-folder-details.xml -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-data/template-instances/rm-record-series-details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/site-data/template-instances/rm-record-series-details.xml -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-data/template-instances/rm-references.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/site-data/template-instances/rm-references.xml -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-data/template-instances/rm-search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/site-data/template-instances/rm-search.xml -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/components/console/rm-console-title.get.properties: -------------------------------------------------------------------------------- 1 | #header.rmconsole=RM Admin Tools -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/components/console/rm-console-title.get_de.properties: -------------------------------------------------------------------------------- 1 | #header.rmconsole=RM Admin Tools 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/components/console/rm-console-title.get_es.properties: -------------------------------------------------------------------------------- 1 | #header.rmconsole=RM Admin Tools 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/components/console/rm-console-title.get_fr.properties: -------------------------------------------------------------------------------- 1 | #header.rmconsole=RM Admin Tools 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/components/console/rm-console-title.get_it.properties: -------------------------------------------------------------------------------- 1 | #header.rmconsole=RM Admin Tools 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/components/console/rm-console-title.get_ja.properties: -------------------------------------------------------------------------------- 1 | #header.rmconsole=RM Admin Tools 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/components/console/rm-console-title.get_nb.properties: -------------------------------------------------------------------------------- 1 | #header.rmconsole=RM Admin Tools 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/components/console/rm-console-title.get_nl.properties: -------------------------------------------------------------------------------- 1 | #header.rmconsole=RM Admin Tools 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/components/console/rm-console-title.get_pt_BR.properties: -------------------------------------------------------------------------------- 1 | #header.rmconsole=RM Admin Tools 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/components/console/rm-console-title.get_ru.properties: -------------------------------------------------------------------------------- 1 | #header.rmconsole=RM Admin Tools 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/components/console/rm-console-title.get_zh_CN.properties: -------------------------------------------------------------------------------- 1 | #header.rmconsole=RM Admin Tools 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/customizations/components/node-details/node-header.get.properties: -------------------------------------------------------------------------------- 1 | path.documents=File Plan -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/customizations/components/node-details/node-header.get_de.properties: -------------------------------------------------------------------------------- 1 | path.documents=Ablageplan 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/customizations/components/node-details/node-header.get_es.properties: -------------------------------------------------------------------------------- 1 | path.documents=Cuadro de clasificaci\u00f3n 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/customizations/components/node-details/node-header.get_fr.properties: -------------------------------------------------------------------------------- 1 | path.documents=Plan de classement 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/customizations/components/node-details/node-header.get_it.properties: -------------------------------------------------------------------------------- 1 | path.documents=Piano di fascicolazione 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/customizations/components/node-details/node-header.get_nb.properties: -------------------------------------------------------------------------------- 1 | path.documents=Filplan 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/customizations/components/node-details/node-header.get_nl.properties: -------------------------------------------------------------------------------- 1 | path.documents=Ordeningsplan 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/customizations/components/node-details/node-header.get_pt_BR.properties: -------------------------------------------------------------------------------- 1 | path.documents=Plano de arquivamento 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/customizations/components/node-details/node-header.get_zh_CN.properties: -------------------------------------------------------------------------------- 1 | path.documents=\u5f52\u7c7b\u65b9\u6848 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/customizations/share/header/share-header.get.properties: -------------------------------------------------------------------------------- 1 | #page.rmConsole.title=RM Admin Tools -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/customizations/share/header/share-header.get_de.properties: -------------------------------------------------------------------------------- 1 | #page.rmConsole.title=RM Admin Tools 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/customizations/share/header/share-header.get_es.properties: -------------------------------------------------------------------------------- 1 | #page.rmConsole.title=RM Admin Tools 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/customizations/share/header/share-header.get_fr.properties: -------------------------------------------------------------------------------- 1 | #page.rmConsole.title=RM Admin Tools 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/customizations/share/header/share-header.get_it.properties: -------------------------------------------------------------------------------- 1 | #page.rmConsole.title=RM Admin Tools 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/customizations/share/header/share-header.get_ja.properties: -------------------------------------------------------------------------------- 1 | #page.rmConsole.title=RM Admin Tools 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/customizations/share/header/share-header.get_nb.properties: -------------------------------------------------------------------------------- 1 | #page.rmConsole.title=RM Admin Tools 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/customizations/share/header/share-header.get_nl.properties: -------------------------------------------------------------------------------- 1 | #page.rmConsole.title=RM Admin Tools 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/customizations/share/header/share-header.get_pt_BR.properties: -------------------------------------------------------------------------------- 1 | #page.rmConsole.title=RM Admin Tools 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/customizations/share/header/share-header.get_ru.properties: -------------------------------------------------------------------------------- 1 | #page.rmConsole.title=RM Admin Tools 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/customizations/share/header/share-header.get_zh_CN.properties: -------------------------------------------------------------------------------- 1 | #page.rmConsole.title=RM Admin Tools 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/modules/console/list-of-value-properties.get.properties: -------------------------------------------------------------------------------- 1 | label.name=Name 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/modules/console/list-of-value-properties.get_de.properties: -------------------------------------------------------------------------------- 1 | label.name=Name 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/modules/console/list-of-value-properties.get_es.properties: -------------------------------------------------------------------------------- 1 | label.name=Nombre 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/modules/console/list-of-value-properties.get_fr.properties: -------------------------------------------------------------------------------- 1 | label.name=Nom 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/modules/console/list-of-value-properties.get_it.properties: -------------------------------------------------------------------------------- 1 | label.name=Nome 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/modules/console/list-of-value-properties.get_ja.properties: -------------------------------------------------------------------------------- 1 | label.name=\u540d\u524d 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/modules/console/list-of-value-properties.get_nb.properties: -------------------------------------------------------------------------------- 1 | label.name=Navn 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/modules/console/list-of-value-properties.get_nl.properties: -------------------------------------------------------------------------------- 1 | label.name=Naam 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/modules/console/list-of-value-properties.get_pt_BR.properties: -------------------------------------------------------------------------------- 1 | label.name=Nome 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/modules/console/list-of-value-properties.get_zh_CN.properties: -------------------------------------------------------------------------------- 1 | label.name=\u540d\u79f0 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/modules/search/save-search.get_de.properties: -------------------------------------------------------------------------------- 1 | header.savesearch=Suche speichern 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/modules/search/save-search.get_es.properties: -------------------------------------------------------------------------------- 1 | header.savesearch=Guardar b\u00fasqueda 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/modules/search/save-search.get_fr.properties: -------------------------------------------------------------------------------- 1 | header.savesearch=Enregistrer la recherche 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/modules/search/save-search.get_it.properties: -------------------------------------------------------------------------------- 1 | header.savesearch=Salva ricerca 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/modules/search/save-search.get_nb.properties: -------------------------------------------------------------------------------- 1 | header.savesearch=Lagre s\u00f8k 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/modules/search/save-search.get_nl.properties: -------------------------------------------------------------------------------- 1 | header.savesearch=Zoekopdracht opslaan 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/modules/search/save-search.get_pt_BR.properties: -------------------------------------------------------------------------------- 1 | header.savesearch=Salvar pesquisa 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/site-webscripts/org/alfresco/rm/modules/search/save-search.get_zh_CN.properties: -------------------------------------------------------------------------------- 1 | header.savesearch=\u4fdd\u5b58\u641c\u7d22 2 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/templates/org/alfresco/rm/audit.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/templates/org/alfresco/rm/audit.ftl -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/templates/org/alfresco/rm/disposition-edit.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/templates/org/alfresco/rm/disposition-edit.ftl -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/templates/org/alfresco/rm/fileplan-report.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/templates/org/alfresco/rm/fileplan-report.ftl -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/templates/org/alfresco/rm/new-reference.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/templates/org/alfresco/rm/new-reference.ftl -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/templates/org/alfresco/rm/record-category-details.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/templates/org/alfresco/rm/record-category-details.ftl -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/templates/org/alfresco/rm/record-folder-details.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/templates/org/alfresco/rm/record-folder-details.ftl -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/templates/org/alfresco/rm/record-series-details.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/templates/org/alfresco/rm/record-series-details.ftl -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/templates/org/alfresco/rm/references.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/templates/org/alfresco/rm/references.ftl -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/templates/org/alfresco/rm/search.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/templates/org/alfresco/rm/search.ftl -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/web-extension/rm-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/web-extension/rm-context.xml -------------------------------------------------------------------------------- /rm-community/rm-community-share/config/alfresco/web-extension/rm-share-config-custom.xml.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/config/alfresco/web-extension/rm-share-config-custom.xml.sample -------------------------------------------------------------------------------- /rm-community/rm-community-share/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/docker-compose.yml -------------------------------------------------------------------------------- /rm-community/rm-community-share/jrebel-docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/jrebel-docker-compose.yml -------------------------------------------------------------------------------- /rm-community/rm-community-share/jrebel-repo/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/jrebel-repo/Dockerfile -------------------------------------------------------------------------------- /rm-community/rm-community-share/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/pom.xml -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/components/documentlibrary/dm-actions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/components/documentlibrary/dm-actions.css -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/components/documentlibrary/dm-actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/components/documentlibrary/dm-actions.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/components/images/header/rm-management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/components/images/header/rm-management.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/components/images/page-rmsearch-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/components/images/page-rmsearch-64.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/js/alfresco/rm/forms/controls/AlfRmRecordPickerControl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/js/alfresco/rm/forms/controls/AlfRmRecordPickerControl.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/js/alfresco/rm/images/filetypes/record-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/js/alfresco/rm/images/filetypes/record-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/js/alfresco/rm/images/filetypes/record-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/js/alfresco/rm/images/filetypes/record-32.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/js/alfresco/rm/lists/AlfRmRelationshipList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/js/alfresco/rm/lists/AlfRmRelationshipList.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/js/alfresco/rm/services/AlfRmActionBridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/js/alfresco/rm/services/AlfRmActionBridge.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/js/alfresco/rm/services/RelationshipService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/js/alfresco/rm/services/RelationshipService.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/js/alfresco/rm/services/i18n/RelationshipService.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/js/alfresco/rm/services/i18n/RelationshipService.properties -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/js/alfresco/rm/services/i18n/RelationshipService_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/js/alfresco/rm/services/i18n/RelationshipService_de.properties -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/js/alfresco/rm/services/i18n/RelationshipService_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/js/alfresco/rm/services/i18n/RelationshipService_es.properties -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/js/alfresco/rm/services/i18n/RelationshipService_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/js/alfresco/rm/services/i18n/RelationshipService_fr.properties -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/js/alfresco/rm/services/i18n/RelationshipService_it.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/js/alfresco/rm/services/i18n/RelationshipService_it.properties -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/js/alfresco/rm/services/i18n/RelationshipService_ja.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/js/alfresco/rm/services/i18n/RelationshipService_ja.properties -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/js/alfresco/rm/services/i18n/RelationshipService_nb.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/js/alfresco/rm/services/i18n/RelationshipService_nb.properties -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/js/alfresco/rm/services/i18n/RelationshipService_nl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/js/alfresco/rm/services/i18n/RelationshipService_nl.properties -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/js/alfresco/rm/services/i18n/RelationshipService_ru.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/js/alfresco/rm/services/i18n/RelationshipService_ru.properties -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/js/alfresco/rm/util/RmUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/js/alfresco/rm/util/RmUtils.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/console/groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/console/groups.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/console/rm-audit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/console/rm-audit.css -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/console/rm-audit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/console/rm-audit.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/console/rm-custom-metadata.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/console/rm-custom-metadata.css -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/console/rm-custom-metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/console/rm-custom-metadata.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/console/rm-define-roles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/console/rm-define-roles.css -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/console/rm-define-roles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/console/rm-define-roles.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/console/rm-email-mappings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/console/rm-email-mappings.css -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/console/rm-email-mappings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/console/rm-email-mappings.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/console/rm-events.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/console/rm-events.css -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/console/rm-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/console/rm-events.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/console/rm-list-of-values.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/console/rm-list-of-values.css -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/console/rm-list-of-values.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/console/rm-list-of-values.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/console/rm-references.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/console/rm-references.css -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/console/rm-references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/console/rm-references.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/console/rm-user-rights.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/console/rm-user-rights.css -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/console/rm-user-rights.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/console/rm-user-rights.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/console/rm-users-and-groups.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/console/rm-users-and-groups.css -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/console/rm-users-and-groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/console/rm-users-and-groups.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/dashlets/datasets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/dashlets/datasets.css -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/dashlets/datasets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/dashlets/datasets.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/document-details/document-actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/document-details/document-actions.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/document-details/document-references.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/document-details/document-references.css -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/document-details/document-references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/document-details/document-references.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/document-details/document-versions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/document-details/document-versions.css -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/document-details/document-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/document-details/document-versions.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/document-details/relationships.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/document-details/relationships.css -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/folder-manage-rules-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/folder-manage-rules-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-accession-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-accession-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-accession-record-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-accession-record-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-add-relationship-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-add-relationship-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-add-to-hold-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-add-to-hold-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-close-folder-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-close-folder-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-copy-folder-to-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-copy-folder-to-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-copy-record-to-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-copy-record-to-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-create-record-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-create-record-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-cutoff-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-cutoff-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-cutoff-folder-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-cutoff-folder-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-declare-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-declare-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-destroy-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-destroy-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-download-zip-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-download-zip-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-edit-reason-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-edit-reason-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-export-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-export-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-export-disabled-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-export-disabled-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-file-report-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-file-report-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-file-to-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-file-to-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-hide-record-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-hide-record-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-import-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-import-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-import-disabled-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-import-disabled-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-link-to-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-link-to-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-open-folder-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-open-folder-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-reject-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-reject-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-relinquish-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-relinquish-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-remove-from-hold-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-remove-from-hold-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-request-info-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-request-info-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-review-all-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-review-all-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-reviewed-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-reviewed-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-split-email-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-split-email-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-transfer-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-transfer-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-undeclare-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-undeclare-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-undo-cutoff-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-undo-cutoff-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-unlink-from-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-unlink-from-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-view-audit-log-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/actions/rm-view-audit-log-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/documentlist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/documentlist.css -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/documentlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/documentlist.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/close-record-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/close-record-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/delete-record-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/delete-record-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/file-document-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/file-document-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/generic-file-to-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/generic-file-to-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/hold-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/hold-32.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/hold-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/hold-48.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/meta-stub-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/meta-stub-32.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/meta-stub-75x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/meta-stub-75x100.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/move-folder-to-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/move-folder-to-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/move-record-to-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/move-record-to-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/non-electronic-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/non-electronic-32.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/non-electronic-75x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/non-electronic-75x100.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/non-electronic-record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/non-electronic-record.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/open-record-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/open-record-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/record-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/record-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/record-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/record-32.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/record-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/record-64.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/record-add-ref-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/record-add-ref-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/record-category-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/record-category-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/record-category-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/record-category-32.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/record-category-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/record-category-48.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/record-folder-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/record-folder-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/record-folder-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/record-folder-32.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/record-folder-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/record-folder-48.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/record-series-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/record-series-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/record-series-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/record-series-32.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/record-series-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/record-series-48.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/select-all-rm-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/select-all-rm-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/select-none-rm-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/select-none-rm-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/select-records-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/select-records-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/select-undeclared-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/select-undeclared-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/transfer-container-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/transfer-container-32.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/transfer-container-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/transfer-container-48.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/transfer-list-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/transfer-list-48.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/transfer-record-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/transfer-record-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/warning-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/images/warning-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/indicators/rm-accession-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/indicators/rm-accession-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/indicators/rm-accessioned-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/indicators/rm-accessioned-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/indicators/rm-closed-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/indicators/rm-closed-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/indicators/rm-cutoff-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/indicators/rm-cutoff-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/indicators/rm-destroyed-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/indicators/rm-destroyed-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/indicators/rm-frozen-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/indicators/rm-frozen-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/indicators/rm-open-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/indicators/rm-open-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/indicators/rm-pdf-record-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/indicators/rm-pdf-record-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/indicators/rm-record-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/indicators/rm-record-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/indicators/rm-transfer-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/indicators/rm-transfer-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/indicators/rm-transferred-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/indicators/rm-transferred-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/indicators/rm-web-record-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/indicators/rm-web-record-16.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/toolbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/toolbar.css -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/toolbar.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/tree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/tree.css -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/documentlibrary/tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/documentlibrary/tree.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/fileplan/disposition-edit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/fileplan/disposition-edit.css -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/fileplan/disposition-edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/fileplan/disposition-edit.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/fileplan/disposition.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/fileplan/disposition.css -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/fileplan/disposition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/fileplan/disposition.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/fileplan/events.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/fileplan/events.css -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/fileplan/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/fileplan/events.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/fileplan/report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/fileplan/report.css -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/folder-details/folder-actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/folder-details/folder-actions.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/manage-permissions/manage-permissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/manage-permissions/manage-permissions.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/node-details/node-header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/node-details/node-header.css -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/people-finder/authority-finder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/people-finder/authority-finder.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/permissions/permissions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/permissions/permissions.css -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/permissions/permissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/permissions/permissions.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/references/manage-references.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/references/manage-references.css -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/references/manage-references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/references/manage-references.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/references/new-reference.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/references/new-reference.css -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/references/new-reference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/references/new-reference.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/rules/config/rule-config-util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/rules/config/rule-config-util.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/rules/rule-config-action-custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/rules/rule-config-action-custom.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/rules/rule-details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/rules/rule-details.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/rules/rule-edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/rules/rule-edit.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/rules/rules-header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/rules/rules-header.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/rules/rules-linked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/rules/rules-linked.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/rules/rules-none.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/rules/rules-none.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/rules/rules-picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/rules/rules-picker.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/search/images/collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/search/images/collapsed.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/search/images/expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/search/images/expanded.png -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/search/options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/search/options.css -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/search/results.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/search/results.css -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/search/results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/search/results.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/search/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/search/search.css -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/search/search.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/upload/dnd-upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/upload/dnd-upload.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/upload/file-upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/upload/file-upload.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/upload/flash-upload.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/upload/flash-upload.css -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/upload/flash-upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/upload/flash-upload.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/upload/html-upload.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/upload/html-upload.css -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/components/upload/html-upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/components/upload/html-upload.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/css/rm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/css/rm.css -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/js/alfresco-rm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/js/alfresco-rm.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/js/event-delegator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/js/event-delegator.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/js/property-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/js/property-menu.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/js/text-length-check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/js/text-length-check.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/js/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/js/validation.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/modules/create-site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/modules/create-site.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/modules/document-picker/object-renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/modules/document-picker/object-renderer.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/modules/documentlibrary/copy-move-link-file-to.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/modules/documentlibrary/copy-move-link-file-to.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/modules/documentlibrary/file-report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/modules/documentlibrary/file-report.css -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/modules/documentlibrary/file-report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/modules/documentlibrary/file-report.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/modules/documentlibrary/hold/add-to-hold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/modules/documentlibrary/hold/add-to-hold.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/modules/documentlibrary/hold/hold.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/modules/documentlibrary/hold/hold.css -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/modules/documentlibrary/hold/hold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/modules/documentlibrary/hold/hold.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/modules/documentlibrary/hold/remove-from-hold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/modules/documentlibrary/hold/remove-from-hold.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/modules/documentlibrary/select-audit-record-location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/modules/documentlibrary/select-audit-record-location.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/modules/search/save-search.css: -------------------------------------------------------------------------------- 1 | .rm-save-search 2 | { 3 | width: 30em; 4 | } 5 | -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/modules/search/save-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/modules/search/save-search.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/templates/folder-details/folder-details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/templates/folder-details/folder-details.js -------------------------------------------------------------------------------- /rm-community/rm-community-share/source/web/rm/templates/record-series-details/record-series-details.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/source/web/rm/templates/record-series-details/record-series-details.css -------------------------------------------------------------------------------- /rm-community/rm-community-share/tomcat/context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/tomcat/context.xml -------------------------------------------------------------------------------- /rm-community/rm-community-share/unit-test/java/org/alfresco/test/BaseUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/rm-community/rm-community-share/unit-test/java/org/alfresco/test/BaseUnitTest.java -------------------------------------------------------------------------------- /srcclr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alfresco/records-management/HEAD/srcclr.yml --------------------------------------------------------------------------------