├── .ratignore ├── vault-validation ├── src │ └── test │ │ └── resources │ │ ├── dummy.txt │ │ ├── simple-package │ │ ├── META-INF │ │ │ └── vault │ │ │ │ └── genericfile.txt │ │ └── jcr_root │ │ │ ├── apps │ │ │ └── genericfile.xml │ │ │ └── .content.xml │ │ ├── valid-packages │ │ ├── container-package │ │ │ └── META-INF │ │ │ │ └── vault │ │ │ │ └── genericfile.txt │ │ └── application-package │ │ │ ├── META-INF │ │ │ └── vault │ │ │ │ └── genericfile.txt │ │ │ └── jcr_root │ │ │ └── apps │ │ │ └── genericfile.xml │ │ ├── osgi-configuration │ │ ├── myPid~subname.cfg │ │ ├── myPid~subname.config │ │ └── myPid~subname.cfg.json │ │ └── oak-index │ │ └── filter-with-acl.xml ├── .ratignore ├── max-target.bndrun └── min-target.bndrun ├── .mvn └── maven.config ├── vault-core ├── src │ └── test │ │ └── resources │ │ ├── org │ │ └── apache │ │ │ └── jackrabbit │ │ │ └── vault │ │ │ ├── packaging │ │ │ ├── impl │ │ │ │ └── exploded-package-folder1 │ │ │ │ │ └── marker │ │ │ └── registry │ │ │ │ └── impl │ │ │ │ ├── test-package-truncated.zip │ │ │ │ └── test-package.zip │ │ │ └── fs │ │ │ ├── io │ │ │ ├── JarExporter │ │ │ │ └── testEntriesWithSuppressedCompression │ │ │ │ │ └── content │ │ │ │ │ └── dam │ │ │ │ │ └── asf_logo.png │ │ │ └── DocViewFormat │ │ │ │ └── formatted.xml │ │ │ └── filter │ │ │ └── workspacefilters │ │ │ └── complex-expected.xml │ │ └── test-packages │ │ ├── subtest.zip │ │ ├── non-valid-package.zip │ │ ├── atomic-counter-test.zip │ │ ├── pkg-with-no-manifest.zip │ │ ├── pkg-with-filter-and-manifest.zip │ │ └── atomic-counter-test │ │ └── META-INF │ │ └── vault │ │ └── properties.xml ├── .ratignore ├── max-target.bndrun └── min-target.bndrun ├── vault-rcp ├── src │ └── test │ │ └── resources │ │ ├── stop_task.json │ │ ├── remove_task.json │ │ ├── start_task.json │ │ ├── set_credentials.json │ │ ├── create_task.json │ │ └── edit_task.json └── readme.md ├── src └── site │ ├── markdown │ ├── vaultfs.png │ ├── vault_api.png │ └── vault_sample.png │ └── resources │ ├── favicon.ico │ ├── asf_logo.png │ └── jackrabbit.png ├── vault-core-it └── vault-core-integration-tests │ └── src │ └── main │ └── resources │ ├── test-packages │ ├── import_modes_test_filehandler.zip │ │ ├── jcr_root │ │ │ ├── testroot │ │ │ │ ├── merge │ │ │ │ ├── replace │ │ │ │ ├── update │ │ │ │ ├── merge_properties │ │ │ │ ├── update_properties │ │ │ │ └── .content.xml │ │ │ └── .content.xml │ │ └── META-INF │ │ │ └── vault │ │ │ ├── nodetypes.cnd │ │ │ ├── filter.xml │ │ │ └── properties.xml │ ├── stashing │ │ ├── create.zip │ │ │ ├── META-INF │ │ │ │ └── vault │ │ │ │ │ ├── filter.xml │ │ │ │ │ ├── nodetypes.cnd │ │ │ │ │ └── properties.xml │ │ │ └── jcr_root │ │ │ │ ├── .content.xml │ │ │ │ └── tmp │ │ │ │ └── .content.xml │ │ └── update.zip │ │ │ ├── META-INF │ │ │ └── vault │ │ │ │ ├── filter.xml │ │ │ │ ├── nodetypes.cnd │ │ │ │ └── properties.xml │ │ │ └── jcr_root │ │ │ ├── .content.xml │ │ │ └── tmp │ │ │ └── .content.xml │ ├── tags.zip │ ├── tmp.zip │ ├── subtest.zip │ ├── tmp_foo.zip │ ├── cug-test-1.zip │ ├── cug-test-2.zip │ ├── empty_tmp.zip │ ├── privileges.zip │ ├── subsubtest.zip │ ├── test_a-1.0.zip │ ├── test_a-2.0.zip │ ├── test_b-1.0.zip │ ├── test_c-1.0.zip │ ├── test_c-1.1.zip │ ├── test_c-2.0.zip │ ├── test_d-1.0.zip │ ├── test_e-1.0.zip │ ├── test_hook.zip │ ├── test_sns.zip │ ├── tmp_binary.zip │ ├── tmp_less.zip │ ├── fullcoverage.zip │ ├── group_with_a.zip │ ├── invalid_hook.zip │ ├── package_1.0.zip │ ├── package_2.0.zip │ ├── test_user_a.zip │ ├── test_version.zip │ ├── tmp_foo_bar.zip │ ├── tmp_illegal.zip │ ├── deepmixintest.zip │ ├── empty_testnode.zip │ ├── empty_tmp_foo.zip │ ├── external_hook.zip │ ├── group_with_bc.zip │ ├── mixed_package.zip │ ├── namespace.zip │ │ ├── META-INF │ │ │ └── vault │ │ │ │ ├── filter.xml │ │ │ │ ├── nodetypes.cnd │ │ │ │ └── properties.xml │ │ └── jcr_root │ │ │ ├── testroot │ │ │ └── .content.xml │ │ │ └── .content.xml │ ├── subtest_add_a.zip │ ├── testrootimport.zip │ ├── tmp_mode_merge.zip │ ├── tmp_mode_update.zip │ ├── tmp_nt_folder.zip │ ├── tmp_test_deep.zip │ ├── double_properties.zip │ ├── empty_tmp_foo_bar.zip │ ├── filtered_package.zip │ ├── non-valid-package.zip │ ├── root_policy.zip │ │ ├── META-INF │ │ │ └── vault │ │ │ │ ├── filter.xml │ │ │ │ └── properties.xml │ │ └── jcr_root │ │ │ ├── .content.xml │ │ │ └── _rep_policy.xml │ ├── subtest_extract_a.zip │ ├── subtest_ignore_a.zip │ ├── tmp_foo_bar_test.zip │ ├── tmp_mode_replace.zip │ ├── tmp_no_properties.zip │ ├── tmp_test_folders.zip │ ├── atomic-counter-test.zip │ ├── group_with_a_moved.zip │ ├── mode_ac_subpackage.zip │ ├── mode_ac_test_a_uuid.zip │ ├── multipackage-a-1.0.zip │ ├── multipackage-a-2.0.zip │ ├── null-dependency-test.zip │ ├── pkg-with-no-manifest.zip │ ├── repo_no_policy.zip │ │ ├── META-INF │ │ │ └── vault │ │ │ │ ├── filter.xml │ │ │ │ ├── nodetypes.cnd │ │ │ │ └── properties.xml │ │ └── jcr_root │ │ │ └── .content.xml │ ├── repo_policy.zip │ │ ├── META-INF │ │ │ └── vault │ │ │ │ ├── filter.xml │ │ │ │ ├── nodetypes.cnd │ │ │ │ └── properties.xml │ │ └── jcr_root │ │ │ ├── .content.xml │ │ │ └── _rep_repoPolicy.xml │ ├── subtest_inherit_dep.zip │ ├── subtest_with_content.zip │ ├── test_childnodeorder.zip │ ├── test_childnodeorder2.zip │ ├── test_filter_binary.zip │ ├── test_two_moved_users.zip │ ├── test_user_a_policy.zip │ ├── test_user_a_profile.zip │ ├── tmp_with_thumbnail.zip │ ├── unfiltered_package.zip │ ├── xml-nwf-truncated.zip │ │ ├── META-INF │ │ │ └── vault │ │ │ │ ├── filter.xml │ │ │ │ ├── nodetypes.cnd │ │ │ │ └── properties.xml │ │ └── jcr_root │ │ │ ├── testroot │ │ │ └── .content.xml │ │ │ └── .content.xml │ ├── enhanced_file_aggregate.zip │ │ ├── META-INF │ │ │ └── vault │ │ │ │ ├── filter.xml │ │ │ │ └── properties.xml │ │ └── jcr_root │ │ │ └── testroot │ │ │ ├── tika │ │ │ └── config.xml │ │ │ └── .content.xml │ ├── packagetype │ │ ├── mixed-pkg.zip │ │ ├── notype-pkg.zip │ │ ├── container-pkg.zip │ │ ├── content-pkg.zip │ │ └── application-pkg.zip │ ├── properties-with-0mtime.zip │ ├── referenceable.zip │ │ ├── META-INF │ │ │ └── vault │ │ │ │ ├── filter.xml │ │ │ │ ├── nodetypes.cnd │ │ │ │ └── properties.xml │ │ └── jcr_root │ │ │ ├── tmp │ │ │ ├── .content.xml │ │ │ └── referenceable.xml │ │ │ └── .content.xml │ ├── subtest_with_nodetypes.zip │ ├── test-package-with-etc.zip │ ├── wcm-rollout-config-1.zip │ │ ├── META-INF │ │ │ ├── vault │ │ │ │ ├── filter.xml │ │ │ │ └── nodetypes.cnd │ │ │ └── MANIFEST.MF │ │ └── jcr_root │ │ │ ├── libs │ │ │ ├── .content.xml │ │ │ └── msm │ │ │ │ ├── .content.xml │ │ │ │ └── wcm │ │ │ │ ├── .content.xml │ │ │ │ └── rolloutconfigs │ │ │ │ ├── activate │ │ │ │ └── .content.xml │ │ │ │ ├── deactivate │ │ │ │ └── .content.xml │ │ │ │ ├── .content.xml │ │ │ │ └── default │ │ │ │ └── .content.xml │ │ │ └── .content.xml │ ├── wcm-rollout-config-2.zip │ │ ├── META-INF │ │ │ ├── vault │ │ │ │ ├── filter.xml │ │ │ │ └── nodetypes.cnd │ │ │ └── MANIFEST.MF │ │ └── jcr_root │ │ │ ├── libs │ │ │ ├── .content.xml │ │ │ └── msm │ │ │ │ ├── .content.xml │ │ │ │ └── wcm │ │ │ │ ├── .content.xml │ │ │ │ └── rolloutconfigs │ │ │ │ ├── deactivate │ │ │ │ └── .content.xml │ │ │ │ ├── activate │ │ │ │ └── .content.xml │ │ │ │ ├── .content.xml │ │ │ │ └── default │ │ │ │ └── .content.xml │ │ │ └── .content.xml │ ├── badnamespacenames.zip │ │ ├── META-INF │ │ │ └── vault │ │ │ │ ├── filter.xml │ │ │ │ └── properties.xml │ │ └── jcr_root │ │ │ ├── .content.xml │ │ │ └── tmp │ │ │ ├── .content.xml │ │ │ └── badnamespacenames.xml │ ├── folder-without-docview-element.zip │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── vault │ │ │ │ ├── filter.xml │ │ │ │ └── nodetypes.cnd │ │ └── jcr_root │ │ │ ├── var │ │ │ ├── .content.xml │ │ │ └── foo │ │ │ │ └── bar │ │ │ │ ├── .content.xml │ │ │ │ └── baz │ │ │ │ └── .content.xml │ │ │ └── testroot │ │ │ ├── .content.xml │ │ │ └── foo │ │ │ └── bar │ │ │ ├── .content.xml │ │ │ └── baz │ │ │ └── .content.xml │ ├── mode_ac_test_a.zip │ │ ├── META-INF │ │ │ └── vault │ │ │ │ ├── filter.xml │ │ │ │ ├── nodetypes.cnd │ │ │ │ └── properties.xml │ │ └── jcr_root │ │ │ ├── testroot │ │ │ ├── node_a │ │ │ │ └── .content.xml │ │ │ └── secured │ │ │ │ ├── .content.xml │ │ │ │ └── _rep_policy.xml │ │ │ └── .content.xml │ ├── mode_ac_test_b.zip │ │ ├── META-INF │ │ │ └── vault │ │ │ │ ├── filter.xml │ │ │ │ ├── nodetypes.cnd │ │ │ │ └── properties.xml │ │ └── jcr_root │ │ │ ├── testroot │ │ │ ├── node_a │ │ │ │ └── .content.xml │ │ │ ├── node_b │ │ │ │ └── .content.xml │ │ │ └── secured │ │ │ │ ├── .content.xml │ │ │ │ └── _rep_policy.xml │ │ │ └── .content.xml │ ├── mode_ac_test_d.zip │ │ ├── META-INF │ │ │ └── vault │ │ │ │ ├── filter.xml │ │ │ │ ├── nodetypes.cnd │ │ │ │ └── properties.xml │ │ └── jcr_root │ │ │ ├── testroot │ │ │ ├── node_d │ │ │ │ └── .content.xml │ │ │ └── secured │ │ │ │ ├── .content.xml │ │ │ │ └── _rep_policy.xml │ │ │ └── .content.xml │ ├── mode_ac_test_e.zip │ │ ├── META-INF │ │ │ └── vault │ │ │ │ ├── filter.xml │ │ │ │ ├── nodetypes.cnd │ │ │ │ └── properties.xml │ │ └── jcr_root │ │ │ ├── testroot │ │ │ ├── node_e │ │ │ │ └── .content.xml │ │ │ └── secured │ │ │ │ ├── .content.xml │ │ │ │ └── _rep_policy.xml │ │ │ └── .content.xml │ ├── property_constraint_violation.zip │ │ ├── META-INF │ │ │ └── vault │ │ │ │ ├── filter.xml │ │ │ │ ├── nodetypes.cnd │ │ │ │ └── properties.xml │ │ └── jcr_root │ │ │ ├── testroot │ │ │ └── .content.xml │ │ │ └── .content.xml │ ├── simple-snapshot-version.zip │ ├── test_user_with_rep_cache.zip │ ├── tmp_foo_bar_test_minimal.zip │ ├── tmp_foo_bar_test_nofilter.zip │ ├── tmp_testpage_jcr_content.zip │ ├── mode_ac_test_b2_merge.zip │ │ ├── META-INF │ │ │ └── vault │ │ │ │ ├── filter.xml │ │ │ │ ├── nodetypes.cnd │ │ │ │ └── properties.xml │ │ └── jcr_root │ │ │ ├── testroot │ │ │ ├── node_a │ │ │ │ └── .content.xml │ │ │ ├── node_b │ │ │ │ └── .content.xml │ │ │ └── secured │ │ │ │ ├── .content.xml │ │ │ │ └── _rep_policy.xml │ │ │ └── .content.xml │ ├── mode_ac_test_b3_merge.zip │ │ ├── META-INF │ │ │ └── vault │ │ │ │ ├── filter.xml │ │ │ │ ├── nodetypes.cnd │ │ │ │ └── properties.xml │ │ └── jcr_root │ │ │ ├── testroot │ │ │ ├── node_a │ │ │ │ └── .content.xml │ │ │ ├── node_b │ │ │ │ └── .content.xml │ │ │ └── secured │ │ │ │ ├── .content.xml │ │ │ │ └── _rep_policy.xml │ │ │ └── .content.xml │ ├── mode_ac_test_b_merge.zip │ │ ├── META-INF │ │ │ └── vault │ │ │ │ ├── filter.xml │ │ │ │ └── nodetypes.cnd │ │ └── jcr_root │ │ │ ├── testroot │ │ │ ├── node_a │ │ │ │ └── .content.xml │ │ │ ├── node_b │ │ │ │ └── .content.xml │ │ │ └── secured │ │ │ │ ├── .content.xml │ │ │ │ └── _rep_policy.xml │ │ │ └── .content.xml │ ├── mode_ac_test_c_merge.zip │ │ ├── META-INF │ │ │ └── vault │ │ │ │ ├── filter.xml │ │ │ │ └── nodetypes.cnd │ │ └── jcr_root │ │ │ ├── testroot │ │ │ ├── node_c │ │ │ │ └── .content.xml │ │ │ └── secured │ │ │ │ ├── .content.xml │ │ │ │ └── _rep_policy.xml │ │ │ └── .content.xml │ ├── mode_ac_test_lateuser.zip │ │ ├── META-INF │ │ │ └── vault │ │ │ │ ├── filter.xml │ │ │ │ └── nodetypes.cnd │ │ └── jcr_root │ │ │ ├── testroot │ │ │ ├── node_d │ │ │ │ └── .content.xml │ │ │ └── secured │ │ │ │ ├── .content.xml │ │ │ │ └── _rep_policy.xml │ │ │ └── .content.xml │ ├── mode_ac_test_unsecured_uuid.zip │ ├── oak_ac_content_test.zip │ │ ├── META-INF │ │ │ └── vault │ │ │ │ ├── filter.xml │ │ │ │ ├── nodetypes.cnd │ │ │ │ └── properties.xml │ │ └── jcr_root │ │ │ ├── testroot │ │ │ ├── node_a │ │ │ │ └── .content.xml │ │ │ └── secured │ │ │ │ ├── .content.xml │ │ │ │ └── _rep_policy.xml │ │ │ └── .content.xml │ ├── test_nodetype_on_merge.zip │ │ ├── META-INF │ │ │ └── vault │ │ │ │ ├── filter.xml │ │ │ │ ├── nodetypes.cnd │ │ │ │ └── properties.xml │ │ └── jcr_root │ │ │ ├── home │ │ │ └── groups │ │ │ │ ├── .content.xml │ │ │ │ └── test │ │ │ │ ├── .content.xml │ │ │ │ └── lXZzTxX_ZZkvjixvqJON │ │ │ │ └── .content.xml │ │ │ └── .content.xml │ ├── test_user_a_profile_picture.zip │ ├── intermediate_folders.zip │ │ ├── META-INF │ │ │ └── vault │ │ │ │ ├── filter.xml │ │ │ │ └── properties.xml │ │ └── jcr_root │ │ │ ├── testroot │ │ │ └── myfolder │ │ │ │ └── mychild │ │ │ │ └── .content.xml │ │ │ └── .content.xml │ ├── mode_ac_test_b_preserve.zip │ │ ├── META-INF │ │ │ └── vault │ │ │ │ ├── filter.xml │ │ │ │ └── nodetypes.cnd │ │ └── jcr_root │ │ │ ├── testroot │ │ │ ├── node_a │ │ │ │ └── .content.xml │ │ │ ├── node_b │ │ │ │ └── .content.xml │ │ │ └── secured │ │ │ │ ├── .content.xml │ │ │ │ └── _rep_policy.xml │ │ │ └── .content.xml │ ├── pkg-with-filter-and-manifest.zip │ ├── tmp_with_modified_created_date.zip │ ├── mandatory-non-residual-childnode.zip │ │ ├── META-INF │ │ │ ├── vault │ │ │ │ └── filter.xml │ │ │ └── MANIFEST.MF │ │ └── jcr_root │ │ │ └── .content.xml │ ├── principalbased.zip │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── vault │ │ │ │ ├── filter.xml │ │ │ │ └── nodetypes.cnd │ │ └── jcr_root │ │ │ ├── home │ │ │ ├── users │ │ │ │ ├── system │ │ │ │ │ ├── intermediate │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ └── tBUjdNwIM-i9bTqCYP5D │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ └── .content.xml │ │ │ │ └── .content.xml │ │ │ └── .content.xml │ │ │ └── .content.xml │ ├── simple_file_aggregate_with_children.zip │ │ ├── META-INF │ │ │ └── vault │ │ │ │ ├── filter.xml │ │ │ │ └── nodetypes.cnd │ │ └── jcr_root │ │ │ ├── testroot │ │ │ ├── thumbnail.png │ │ │ └── thumbnail.png.dir │ │ │ │ ├── _jcr_content │ │ │ │ └── _dam_thumbnails │ │ │ │ │ └── _dam_thumbnail_48.png │ │ │ │ └── .content.xml │ │ │ └── .content.xml │ ├── test_nt_unstructured_below_folder_aggregate.zip │ │ ├── META-INF │ │ │ └── vault │ │ │ │ ├── filter.xml │ │ │ │ └── properties.xml │ │ └── jcr_root │ │ │ └── testroot │ │ │ └── myfolder │ │ │ └── mychild │ │ │ └── .content.xml │ ├── external_hook_failing_in_installed_phase.zip │ │ ├── META-INF │ │ │ └── vault │ │ │ │ ├── filter.xml │ │ │ │ └── nodetypes.cnd │ │ └── jcr_root │ │ │ └── .content.xml │ ├── principalbasedstashing.zip │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── vault │ │ │ │ ├── filter.xml │ │ │ │ └── nodetypes.cnd │ │ └── jcr_root │ │ │ ├── home │ │ │ ├── users │ │ │ │ ├── system │ │ │ │ │ ├── intermediate │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ └── tBUjdNwIM-i9bTqCYP5D │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ └── .content.xml │ │ │ │ └── .content.xml │ │ │ └── .content.xml │ │ │ └── .content.xml │ ├── simple_file_aggregate_without_children.zip │ │ ├── META-INF │ │ │ └── vault │ │ │ │ ├── filter.xml │ │ │ │ └── nodetypes.cnd │ │ └── jcr_root │ │ │ ├── testroot │ │ │ └── thumbnail.png │ │ │ └── .content.xml │ ├── principalbased_nopolicy.zip │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── vault │ │ │ │ ├── filter.xml │ │ │ │ └── nodetypes.cnd │ │ └── jcr_root │ │ │ ├── home │ │ │ ├── users │ │ │ │ ├── system │ │ │ │ │ ├── intermediate │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ └── tBUjdNwIM-i9bTqCYP5D │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ └── .content.xml │ │ │ │ └── .content.xml │ │ │ └── .content.xml │ │ │ └── .content.xml │ ├── protected_properties.zip │ │ ├── META-INF │ │ │ └── vault │ │ │ │ ├── filter.xml │ │ │ │ ├── nodetypes.cnd │ │ │ │ └── properties.xml │ │ └── jcr_root │ │ │ ├── testroot2 │ │ │ └── .content.xml │ │ │ ├── testroot │ │ │ └── .content.xml │ │ │ ├── .content.xml │ │ │ └── testroot3 │ │ │ └── .content.xml │ ├── subtest_extract_contains_newer_version.zip │ ├── subtest_extract_contains_older_version.zip │ ├── principalbasedstashing_nopolicy.zip │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── vault │ │ │ │ ├── filter.xml │ │ │ │ └── nodetypes.cnd │ │ └── jcr_root │ │ │ ├── home │ │ │ ├── users │ │ │ │ ├── system │ │ │ │ │ ├── intermediate │ │ │ │ │ │ ├── .content.xml │ │ │ │ │ │ └── tBUjdNwIM-i9bTqCYP5D │ │ │ │ │ │ │ └── .content.xml │ │ │ │ │ └── .content.xml │ │ │ │ └── .content.xml │ │ │ └── .content.xml │ │ │ └── .content.xml │ ├── subtest_extract_contains_older_version_force_downgrade.zip │ ├── mode_ac_test_unsecured_nodetype.zip │ │ ├── jcr_root │ │ │ ├── testroot │ │ │ │ └── secured │ │ │ │ │ └── .content.xml │ │ │ └── .content.xml │ │ └── META-INF │ │ │ └── vault │ │ │ ├── nodetypes.cnd │ │ │ └── filter.xml │ ├── ace_order_overwrite.zip │ │ └── META-INF │ │ │ └── vault │ │ │ └── nodetypes.cnd │ ├── import_modes_test_missing_artifacts.zip │ │ ├── jcr_root │ │ │ ├── testroot │ │ │ │ └── .content.xml │ │ │ └── .content.xml │ │ └── META-INF │ │ │ └── vault │ │ │ ├── nodetypes.cnd │ │ │ ├── filter.xml │ │ │ └── properties.xml │ ├── import_modes_test_generichandler2_docview.zip │ │ ├── jcr_root │ │ │ ├── testroot │ │ │ │ ├── .content.xml │ │ │ │ ├── merge.xml │ │ │ │ ├── replace.xml │ │ │ │ ├── update.xml │ │ │ │ ├── merge_properties.xml │ │ │ │ └── update_properties.xml │ │ │ └── .content.xml │ │ └── META-INF │ │ │ └── vault │ │ │ ├── nodetypes.cnd │ │ │ ├── filter.xml │ │ │ └── properties.xml │ ├── import_modes_test_generichandler_docview.zip │ │ ├── META-INF │ │ │ └── vault │ │ │ │ ├── nodetypes.cnd │ │ │ │ ├── filter.xml │ │ │ │ └── properties.xml │ │ └── jcr_root │ │ │ └── .content.xml │ └── referenceable-dup.zip │ │ ├── jcr_root │ │ ├── tmp │ │ │ ├── .content.xml │ │ │ ├── differentparentconflicts │ │ │ │ ├── .content.xml │ │ │ │ ├── referenceable.xml │ │ │ │ └── duplicate.xml │ │ │ └── sameparentconflicts │ │ │ │ ├── referenceable.xml │ │ │ │ └── duplicate.xml │ │ └── .content.xml │ │ └── META-INF │ │ └── vault │ │ ├── filter.xml │ │ ├── nodetypes.cnd │ │ └── properties.xml │ └── org │ └── apache │ └── jackrabbit │ └── vault │ ├── packaging │ └── registry │ │ └── impl │ │ ├── test-package-truncated.zip │ │ └── test-package.zip │ └── sync │ └── impl │ ├── testfile1.txt │ └── testfile2.txt ├── .gitattributes ├── .gitignore ├── .asf.yaml └── vault-cli └── src └── main └── appassembler └── license-header.txt /.ratignore: -------------------------------------------------------------------------------- 1 | vault-coverage-aggregate/** -------------------------------------------------------------------------------- /vault-validation/src/test/resources/dummy.txt: -------------------------------------------------------------------------------- 1 | some dummy text -------------------------------------------------------------------------------- /.mvn/maven.config: -------------------------------------------------------------------------------- 1 | -Daether.connector.http.connectionMaxTtl=300 2 | -------------------------------------------------------------------------------- /vault-validation/src/test/resources/simple-package/META-INF/vault/genericfile.txt: -------------------------------------------------------------------------------- 1 | Test -------------------------------------------------------------------------------- /vault-validation/src/test/resources/simple-package/jcr_root/apps/genericfile.xml: -------------------------------------------------------------------------------- 1 | Test -------------------------------------------------------------------------------- /vault-validation/src/test/resources/valid-packages/container-package/META-INF/vault/genericfile.txt: -------------------------------------------------------------------------------- 1 | Test -------------------------------------------------------------------------------- /vault-core/src/test/resources/org/apache/jackrabbit/vault/packaging/impl/exploded-package-folder1/marker: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vault-core/src/test/resources/org/apache/jackrabbit/vault/packaging/registry/impl/test-package-truncated.zip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vault-rcp/src/test/resources/stop_task.json: -------------------------------------------------------------------------------- 1 | { 2 | "cmd":"stop", 3 | "id":"copy-geometrixx" 4 | } 5 | -------------------------------------------------------------------------------- /vault-validation/src/test/resources/osgi-configuration/myPid~subname.cfg: -------------------------------------------------------------------------------- 1 | prop1 = value1 2 | prop2 = value2 -------------------------------------------------------------------------------- /vault-validation/src/test/resources/valid-packages/application-package/META-INF/vault/genericfile.txt: -------------------------------------------------------------------------------- 1 | Test -------------------------------------------------------------------------------- /vault-rcp/src/test/resources/remove_task.json: -------------------------------------------------------------------------------- 1 | { 2 | "cmd":"remove", 3 | "id":"copy-geometrixx" 4 | } 5 | -------------------------------------------------------------------------------- /vault-rcp/src/test/resources/start_task.json: -------------------------------------------------------------------------------- 1 | { 2 | "cmd":"start", 3 | "id":"copy-geometrixx" 4 | } 5 | -------------------------------------------------------------------------------- /src/site/markdown/vaultfs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/src/site/markdown/vaultfs.png -------------------------------------------------------------------------------- /src/site/resources/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/src/site/resources/favicon.ico -------------------------------------------------------------------------------- /vault-validation/src/test/resources/osgi-configuration/myPid~subname.config: -------------------------------------------------------------------------------- 1 | prop1=["value1","value2"] 2 | prop2=L"100" 3 | -------------------------------------------------------------------------------- /src/site/markdown/vault_api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/src/site/markdown/vault_api.png -------------------------------------------------------------------------------- /src/site/resources/asf_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/src/site/resources/asf_logo.png -------------------------------------------------------------------------------- /src/site/markdown/vault_sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/src/site/markdown/vault_sample.png -------------------------------------------------------------------------------- /src/site/resources/jackrabbit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/src/site/resources/jackrabbit.png -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/import_modes_test_filehandler.zip/jcr_root/testroot/merge: -------------------------------------------------------------------------------- 1 | new -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/import_modes_test_filehandler.zip/jcr_root/testroot/replace: -------------------------------------------------------------------------------- 1 | new -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/import_modes_test_filehandler.zip/jcr_root/testroot/update: -------------------------------------------------------------------------------- 1 | new -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/org/apache/jackrabbit/vault/packaging/registry/impl/test-package-truncated.zip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/import_modes_test_filehandler.zip/jcr_root/testroot/merge_properties: -------------------------------------------------------------------------------- 1 | new -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/import_modes_test_filehandler.zip/jcr_root/testroot/update_properties: -------------------------------------------------------------------------------- 1 | new -------------------------------------------------------------------------------- /vault-rcp/src/test/resources/set_credentials.json: -------------------------------------------------------------------------------- 1 | { 2 | "cmd":"set-credentials", 3 | "id":"copy-geometrixx", 4 | "srcCreds":"admin:admin" 5 | } 6 | -------------------------------------------------------------------------------- /vault-validation/src/test/resources/osgi-configuration/myPid~subname.cfg.json: -------------------------------------------------------------------------------- 1 | { 2 | "prop1":[ 3 | "value1", 4 | "value2" 5 | ], 6 | "prop2":100 7 | } 8 | -------------------------------------------------------------------------------- /vault-core/src/test/resources/test-packages/subtest.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core/src/test/resources/test-packages/subtest.zip -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Set the default behavior, in case people don't have core.autocrlf set. 2 | * text=auto 3 | 4 | # all XML files should keep lf newlines, even on Windows 5 | *.xml text eol=lf -------------------------------------------------------------------------------- /vault-core/src/test/resources/test-packages/non-valid-package.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core/src/test/resources/test-packages/non-valid-package.zip -------------------------------------------------------------------------------- /vault-validation/src/test/resources/valid-packages/application-package/jcr_root/apps/genericfile.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vault-core/src/test/resources/test-packages/atomic-counter-test.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core/src/test/resources/test-packages/atomic-counter-test.zip -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | .settings/ 3 | .classpath 4 | .project 5 | *.iml 6 | *.ips 7 | *.iws 8 | console.properties 9 | .idea/ 10 | bin/ 11 | derby.log 12 | .flattened-pom.xml 13 | .DS_Store 14 | -------------------------------------------------------------------------------- /vault-core/src/test/resources/test-packages/pkg-with-no-manifest.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core/src/test/resources/test-packages/pkg-with-no-manifest.zip -------------------------------------------------------------------------------- /vault-validation/src/test/resources/oak-index/filter-with-acl.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/stashing/create.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/stashing/update.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /vault-core/src/test/resources/test-packages/pkg-with-filter-and-manifest.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core/src/test/resources/test-packages/pkg-with-filter-and-manifest.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tags.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tags.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tmp.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tmp.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/stashing/create.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/stashing/update.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/subtest.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/subtest.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tmp_foo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tmp_foo.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/cug-test-1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/cug-test-1.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/cug-test-2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/cug-test-2.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/empty_tmp.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/empty_tmp.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/privileges.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/privileges.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/subsubtest.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/subsubtest.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_a-1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_a-1.0.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_a-2.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_a-2.0.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_b-1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_b-1.0.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_c-1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_c-1.0.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_c-1.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_c-1.1.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_c-2.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_c-2.0.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_d-1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_d-1.0.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_e-1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_e-1.0.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_hook.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_hook.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_sns.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_sns.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tmp_binary.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tmp_binary.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tmp_less.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tmp_less.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/fullcoverage.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/fullcoverage.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/group_with_a.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/group_with_a.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/invalid_hook.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/invalid_hook.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/package_1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/package_1.0.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/package_2.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/package_2.0.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_user_a.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_user_a.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_version.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_version.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tmp_foo_bar.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tmp_foo_bar.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tmp_illegal.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tmp_illegal.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/deepmixintest.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/deepmixintest.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/empty_testnode.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/empty_testnode.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/empty_tmp_foo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/empty_tmp_foo.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/external_hook.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/external_hook.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/group_with_bc.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/group_with_bc.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mixed_package.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mixed_package.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/namespace.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/subtest_add_a.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/subtest_add_a.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/testrootimport.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/testrootimport.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tmp_mode_merge.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tmp_mode_merge.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tmp_mode_update.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tmp_mode_update.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tmp_nt_folder.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tmp_nt_folder.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tmp_test_deep.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tmp_test_deep.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/double_properties.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/double_properties.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/empty_tmp_foo_bar.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/empty_tmp_foo_bar.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/filtered_package.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/filtered_package.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/non-valid-package.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/non-valid-package.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/root_policy.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/subtest_extract_a.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/subtest_extract_a.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/subtest_ignore_a.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/subtest_ignore_a.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tmp_foo_bar_test.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tmp_foo_bar_test.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tmp_mode_replace.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tmp_mode_replace.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tmp_no_properties.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tmp_no_properties.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tmp_test_folders.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tmp_test_folders.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/atomic-counter-test.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/atomic-counter-test.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/group_with_a_moved.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/group_with_a_moved.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_subpackage.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_subpackage.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_a_uuid.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_a_uuid.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/multipackage-a-1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/multipackage-a-1.0.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/multipackage-a-2.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/multipackage-a-2.0.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/null-dependency-test.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/null-dependency-test.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/pkg-with-no-manifest.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/pkg-with-no-manifest.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/repo_no_policy.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/repo_policy.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/subtest_inherit_dep.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/subtest_inherit_dep.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/subtest_with_content.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/subtest_with_content.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_childnodeorder.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_childnodeorder.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_childnodeorder2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_childnodeorder2.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_filter_binary.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_filter_binary.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_two_moved_users.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_two_moved_users.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_user_a_policy.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_user_a_policy.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_user_a_profile.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_user_a_profile.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tmp_with_thumbnail.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tmp_with_thumbnail.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/unfiltered_package.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/unfiltered_package.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/xml-nwf-truncated.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core/src/test/resources/org/apache/jackrabbit/vault/packaging/registry/impl/test-package.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core/src/test/resources/org/apache/jackrabbit/vault/packaging/registry/impl/test-package.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/enhanced_file_aggregate.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/packagetype/mixed-pkg.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/packagetype/mixed-pkg.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/packagetype/notype-pkg.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/packagetype/notype-pkg.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/properties-with-0mtime.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/properties-with-0mtime.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/referenceable.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/subtest_with_nodetypes.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/subtest_with_nodetypes.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test-package-with-etc.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test-package-with-etc.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/wcm-rollout-config-1.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/wcm-rollout-config-2.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/badnamespacenames.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/folder-without-docview-element.zip/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Content-Package-Id: my_packages:test 3 | Content-Package-Roots: /test 4 | Content-Package-Type: content 5 | 6 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_a.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_b.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_d.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_e.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/packagetype/container-pkg.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/packagetype/container-pkg.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/packagetype/content-pkg.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/packagetype/content-pkg.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/property_constraint_violation.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/simple-snapshot-version.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/simple-snapshot-version.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_user_with_rep_cache.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_user_with_rep_cache.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tmp_foo_bar_test_minimal.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tmp_foo_bar_test_minimal.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tmp_foo_bar_test_nofilter.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tmp_foo_bar_test_nofilter.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tmp_testpage_jcr_content.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tmp_testpage_jcr_content.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_b2_merge.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_b3_merge.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_b_merge.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_c_merge.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_lateuser.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_unsecured_uuid.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_unsecured_uuid.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/oak_ac_content_test.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/packagetype/application-pkg.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/packagetype/application-pkg.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_nodetype_on_merge.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_user_a_profile_picture.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_user_a_profile_picture.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/intermediate_folders.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_b_preserve.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/pkg-with-filter-and-manifest.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/pkg-with-filter-and-manifest.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tmp_with_modified_created_date.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/tmp_with_modified_created_date.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mandatory-non-residual-childnode.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/wcm-rollout-config-1.zip/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Content-Package-Roots: /libs/msm/wcm 3 | Content-Package-Type: application 4 | Content-Package-Id: my_packages:wcm-rollout-config:1 5 | 6 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/wcm-rollout-config-2.zip/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Content-Package-Roots: /libs/msm/wcm 3 | Content-Package-Type: application 4 | Content-Package-Id: my_packages:wcm-rollout-config:1 5 | 6 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/principalbased.zip/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Content-Package-Roots: /home/users/system/intermediate 3 | Content-Package-Type: content 4 | Content-Package-Id: my_packages:testsystemuser 5 | 6 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/principalbased.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/simple_file_aggregate_with_children.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_nt_unstructured_below_folder_aggregate.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/external_hook_failing_in_installed_phase.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/principalbasedstashing.zip/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Content-Package-Roots: /home/users/system/intermediate 3 | Content-Package-Type: content 4 | Content-Package-Id: my_packages:testsystemuser 5 | 6 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/simple_file_aggregate_without_children.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mandatory-non-residual-childnode.zip/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Content-Package-Roots: /libs/msm/wcm 3 | Content-Package-Type: application 4 | Content-Package-Id: my_packages:wcm-rollout-config:1 5 | 6 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/principalbased_nopolicy.zip/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Content-Package-Roots: /home/users/system/intermediate 3 | Content-Package-Type: content 4 | Content-Package-Id: my_packages:testsystemuser 5 | 6 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/principalbasedstashing.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/protected_properties.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/subtest_extract_contains_newer_version.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/subtest_extract_contains_newer_version.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/subtest_extract_contains_older_version.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/subtest_extract_contains_older_version.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/principalbasedstashing_nopolicy.zip/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Content-Package-Roots: /home/users/system/intermediate 3 | Content-Package-Type: content 4 | Content-Package-Id: my_packages:testsystemuser 5 | 6 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/folder-without-docview-element.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/principalbased_nopolicy.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_nodetype_on_merge.zip/jcr_root/home/groups/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /vault-validation/.ratignore: -------------------------------------------------------------------------------- 1 | .ratignore 2 | src/test/resources/**/*.txt 3 | src/test/resources/**/*.xml 4 | src/test/resources/**/.vlt 5 | src/test/resources/**/.vltignore 6 | src/test/resources/**/.dummy 7 | src/test/resources/**/*.lst 8 | src/test/resources/**/*.MF 9 | src/test/resources/osgi-configuration/** -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/principalbased.zip/jcr_root/home/users/system/intermediate/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_nodetype_on_merge.zip/jcr_root/home/groups/test/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/org/apache/jackrabbit/vault/packaging/registry/impl/test-package.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/org/apache/jackrabbit/vault/packaging/registry/impl/test-package.zip -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/principalbasedstashing.zip/jcr_root/home/users/system/intermediate/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/principalbasedstashing_nopolicy.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/principalbased_nopolicy.zip/jcr_root/home/users/system/intermediate/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/principalbasedstashing_nopolicy.zip/jcr_root/home/users/system/intermediate/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/stashing/create.zip/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'teststash'='https://issues.apache.org/jira/browse/JCRVLT-684'> 2 | 3 | [teststash:noChildNodes] 4 | 5 | [teststash:hasMandatoryChildNode] 6 | mixin 7 | + teststash:mandatoryChildNode mandatory 8 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/stashing/update.zip/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'teststash'='https://issues.apache.org/jira/browse/JCRVLT-684'> 2 | 3 | [teststash:noChildNodes] 4 | 5 | [teststash:hasMandatoryChildNode] 6 | mixin 7 | + teststash:mandatoryChildNode mandatory 8 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/subtest_extract_contains_older_version_force_downgrade.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/subtest_extract_contains_older_version_force_downgrade.zip -------------------------------------------------------------------------------- /vault-core/src/test/resources/org/apache/jackrabbit/vault/fs/io/JarExporter/testEntriesWithSuppressedCompression/content/dam/asf_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core/src/test/resources/org/apache/jackrabbit/vault/fs/io/JarExporter/testEntriesWithSuppressedCompression/content/dam/asf_logo.png -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_a.zip/jcr_root/testroot/node_a/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_b.zip/jcr_root/testroot/node_a/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_b.zip/jcr_root/testroot/node_b/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_d.zip/jcr_root/testroot/node_d/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_e.zip/jcr_root/testroot/node_e/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_unsecured_nodetype.zip/jcr_root/testroot/secured/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/principalbased.zip/jcr_root/home/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/folder-without-docview-element.zip/jcr_root/var/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/folder-without-docview-element.zip/jcr_root/var/foo/bar/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/folder-without-docview-element.zip/jcr_root/var/foo/bar/baz/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_b_merge.zip/jcr_root/testroot/node_a/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_b_merge.zip/jcr_root/testroot/node_b/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_c_merge.zip/jcr_root/testroot/node_c/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/oak_ac_content_test.zip/jcr_root/testroot/node_a/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/principalbased.zip/jcr_root/home/users/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/principalbased_nopolicy.zip/jcr_root/home/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/principalbasedstashing.zip/jcr_root/home/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/badnamespacenames.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/folder-without-docview-element.zip/jcr_root/testroot/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/folder-without-docview-element.zip/jcr_root/testroot/foo/bar/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/folder-without-docview-element.zip/jcr_root/testroot/foo/bar/baz/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_b2_merge.zip/jcr_root/testroot/node_a/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_b2_merge.zip/jcr_root/testroot/node_b/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_b3_merge.zip/jcr_root/testroot/node_a/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_b3_merge.zip/jcr_root/testroot/node_b/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_b_preserve.zip/jcr_root/testroot/node_a/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_b_preserve.zip/jcr_root/testroot/node_b/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_lateuser.zip/jcr_root/testroot/node_d/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/principalbased.zip/jcr_root/home/users/system/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/principalbasedstashing.zip/jcr_root/home/users/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_a.zip/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'sling'='http://sling.apache.org/jcr/sling/1.0'> 2 | <'nt'='http://www.jcp.org/jcr/nt/1.0'> 3 | 4 | [sling:Folder] > nt:folder 5 | - * (undefined) 6 | - * (undefined) multiple 7 | + * (nt:base) = sling:Folder version 8 | 9 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_b.zip/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'sling'='http://sling.apache.org/jcr/sling/1.0'> 2 | <'nt'='http://www.jcp.org/jcr/nt/1.0'> 3 | 4 | [sling:Folder] > nt:folder 5 | - * (undefined) 6 | - * (undefined) multiple 7 | + * (nt:base) = sling:Folder version 8 | 9 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_d.zip/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'sling'='http://sling.apache.org/jcr/sling/1.0'> 2 | <'nt'='http://www.jcp.org/jcr/nt/1.0'> 3 | 4 | [sling:Folder] > nt:folder 5 | - * (undefined) 6 | - * (undefined) multiple 7 | + * (nt:base) = sling:Folder version 8 | 9 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_e.zip/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'sling'='http://sling.apache.org/jcr/sling/1.0'> 2 | <'nt'='http://www.jcp.org/jcr/nt/1.0'> 3 | 4 | [sling:Folder] > nt:folder 5 | - * (undefined) 6 | - * (undefined) multiple 7 | + * (nt:base) = sling:Folder version 8 | 9 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/principalbased_nopolicy.zip/jcr_root/home/users/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/principalbasedstashing_nopolicy.zip/jcr_root/home/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/simple_file_aggregate_with_children.zip/jcr_root/testroot/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/simple_file_aggregate_with_children.zip/jcr_root/testroot/thumbnail.png -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/ace_order_overwrite.zip/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'sling'='http://sling.apache.org/jcr/sling/1.0'> 2 | <'nt'='http://www.jcp.org/jcr/nt/1.0'> 3 | 4 | [sling:Folder] > nt:folder 5 | - * (undefined) 6 | - * (undefined) multiple 7 | + * (nt:base) = sling:Folder version 8 | 9 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_b_merge.zip/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'sling'='http://sling.apache.org/jcr/sling/1.0'> 2 | <'nt'='http://www.jcp.org/jcr/nt/1.0'> 3 | 4 | [sling:Folder] > nt:folder 5 | - * (undefined) 6 | - * (undefined) multiple 7 | + * (nt:base) = sling:Folder version 8 | 9 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_c_merge.zip/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'sling'='http://sling.apache.org/jcr/sling/1.0'> 2 | <'nt'='http://www.jcp.org/jcr/nt/1.0'> 3 | 4 | [sling:Folder] > nt:folder 5 | - * (undefined) 6 | - * (undefined) multiple 7 | + * (nt:base) = sling:Folder version 8 | 9 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/oak_ac_content_test.zip/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'sling'='http://sling.apache.org/jcr/sling/1.0'> 2 | <'nt'='http://www.jcp.org/jcr/nt/1.0'> 3 | 4 | [sling:Folder] > nt:folder 5 | - * (undefined) 6 | - * (undefined) multiple 7 | + * (nt:base) = sling:Folder version 8 | 9 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/principalbased.zip/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'rep'='internal'> 2 | 3 | [rep:Password] 4 | - * (undefined) protected 5 | - * (undefined) protected multiple 6 | 7 | [rep:RepoAccessControllable] 8 | mixin 9 | + rep:repoPolicy (rep:Policy) protected ignore 10 | 11 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/principalbased_nopolicy.zip/jcr_root/home/users/system/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/principalbasedstashing.zip/jcr_root/home/users/system/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/principalbasedstashing_nopolicy.zip/jcr_root/home/users/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/simple_file_aggregate_without_children.zip/jcr_root/testroot/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/simple_file_aggregate_without_children.zip/jcr_root/testroot/thumbnail.png -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/import_modes_test_filehandler.zip/jcr_root/testroot/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_b2_merge.zip/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'sling'='http://sling.apache.org/jcr/sling/1.0'> 2 | <'nt'='http://www.jcp.org/jcr/nt/1.0'> 3 | 4 | [sling:Folder] > nt:folder 5 | - * (undefined) 6 | - * (undefined) multiple 7 | + * (nt:base) = sling:Folder version 8 | 9 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_b3_merge.zip/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'sling'='http://sling.apache.org/jcr/sling/1.0'> 2 | <'nt'='http://www.jcp.org/jcr/nt/1.0'> 3 | 4 | [sling:Folder] > nt:folder 5 | - * (undefined) 6 | - * (undefined) multiple 7 | + * (nt:base) = sling:Folder version 8 | 9 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_b_preserve.zip/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'sling'='http://sling.apache.org/jcr/sling/1.0'> 2 | <'nt'='http://www.jcp.org/jcr/nt/1.0'> 3 | 4 | [sling:Folder] > nt:folder 5 | - * (undefined) 6 | - * (undefined) multiple 7 | + * (nt:base) = sling:Folder version 8 | 9 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_lateuser.zip/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'sling'='http://sling.apache.org/jcr/sling/1.0'> 2 | <'nt'='http://www.jcp.org/jcr/nt/1.0'> 3 | 4 | [sling:Folder] > nt:folder 5 | - * (undefined) 6 | - * (undefined) multiple 7 | + * (nt:base) = sling:Folder version 8 | 9 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/import_modes_test_filehandler.zip/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'sling'='http://sling.apache.org/jcr/sling/1.0'> 2 | <'nt'='http://www.jcp.org/jcr/nt/1.0'> 3 | 4 | [sling:Folder] > nt:folder 5 | - * (undefined) 6 | - * (undefined) multiple 7 | + * (nt:base) = sling:Folder version 8 | 9 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/import_modes_test_missing_artifacts.zip/jcr_root/testroot/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/principalbased_nopolicy.zip/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'rep'='internal'> 2 | 3 | [rep:Password] 4 | - * (undefined) protected 5 | - * (undefined) protected multiple 6 | 7 | [rep:RepoAccessControllable] 8 | mixin 9 | + rep:repoPolicy (rep:Policy) protected ignore 10 | 11 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/principalbasedstashing.zip/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'rep'='internal'> 2 | 3 | [rep:Password] 4 | - * (undefined) protected 5 | - * (undefined) protected multiple 6 | 7 | [rep:RepoAccessControllable] 8 | mixin 9 | + rep:repoPolicy (rep:Policy) protected ignore 10 | 11 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/principalbasedstashing_nopolicy.zip/jcr_root/home/users/system/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/root_policy.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/wcm-rollout-config-1.zip/jcr_root/libs/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/wcm-rollout-config-2.zip/jcr_root/libs/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/import_modes_test_generichandler2_docview.zip/jcr_root/testroot/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/import_modes_test_missing_artifacts.zip/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'sling'='http://sling.apache.org/jcr/sling/1.0'> 2 | <'nt'='http://www.jcp.org/jcr/nt/1.0'> 3 | 4 | [sling:Folder] > nt:folder 5 | - * (undefined) 6 | - * (undefined) multiple 7 | + * (nt:base) = sling:Folder version 8 | 9 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_unsecured_nodetype.zip/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'sling'='http://sling.apache.org/jcr/sling/1.0'> 2 | <'nt'='http://www.jcp.org/jcr/nt/1.0'> 3 | 4 | [sling:Folder] > nt:folder 5 | - * (undefined) 6 | - * (undefined) multiple 7 | + * (nt:base) = sling:Folder version 8 | 9 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/external_hook_failing_in_installed_phase.zip/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'sling'='http://sling.apache.org/jcr/sling/1.0'> 2 | <'nt'='http://www.jcp.org/jcr/nt/1.0'> 3 | 4 | [sling:Folder] > nt:folder 5 | - * (undefined) 6 | - * (undefined) multiple 7 | + * (nt:base) = sling:Folder version 8 | 9 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/import_modes_test_generichandler_docview.zip/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'sling'='http://sling.apache.org/jcr/sling/1.0'> 2 | <'nt'='http://www.jcp.org/jcr/nt/1.0'> 3 | 4 | [sling:Folder] > nt:folder 5 | - * (undefined) 6 | - * (undefined) multiple 7 | + * (nt:base) = sling:Folder version 8 | 9 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_a.zip/jcr_root/testroot/secured/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_b.zip/jcr_root/testroot/secured/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_d.zip/jcr_root/testroot/secured/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_e.zip/jcr_root/testroot/secured/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/principalbasedstashing_nopolicy.zip/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'rep'='internal'> 2 | 3 | [rep:Password] 4 | - * (undefined) protected 5 | - * (undefined) protected multiple 6 | 7 | [rep:RepoAccessControllable] 8 | mixin 9 | + rep:repoPolicy (rep:Policy) protected ignore 10 | 11 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/referenceable-dup.zip/jcr_root/tmp/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/referenceable.zip/jcr_root/tmp/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/simple_file_aggregate_without_children.zip/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'sling'='http://sling.apache.org/jcr/sling/1.0'> 2 | <'nt'='http://www.jcp.org/jcr/nt/1.0'> 3 | 4 | [sling:Folder] > nt:folder 5 | - * (undefined) 6 | - * (undefined) multiple 7 | + * (nt:base) = sling:Folder version 8 | 9 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/badnamespacenames.zip/jcr_root/tmp/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/import_modes_test_generichandler2_docview.zip/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'sling'='http://sling.apache.org/jcr/sling/1.0'> 2 | <'nt'='http://www.jcp.org/jcr/nt/1.0'> 3 | 4 | [sling:Folder] > nt:folder 5 | - * (undefined) 6 | - * (undefined) multiple 7 | + * (nt:base) = sling:Folder version 8 | 9 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_b2_merge.zip/jcr_root/testroot/secured/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_b3_merge.zip/jcr_root/testroot/secured/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_b_merge.zip/jcr_root/testroot/secured/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_b_preserve.zip/jcr_root/testroot/secured/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_c_merge.zip/jcr_root/testroot/secured/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_lateuser.zip/jcr_root/testroot/secured/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/oak_ac_content_test.zip/jcr_root/testroot/secured/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core/.ratignore: -------------------------------------------------------------------------------- 1 | src/test/resources/org/apache/jackrabbit/vault/packaging/impl/exploded-package-folder1/marker 2 | src/test/resources/org/apache/jackrabbit/vault/fs/filter/workspacefilters/complex-expected.xml 3 | src/test/resources/org/apache/jackrabbit/vault/fs/io/DocViewFormat/formatted.xml 4 | src/test/resources/test-packages/atomic-counter-test/META-INF/vault/properties.xml -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_unsecured_nodetype.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/namespace.zip/jcr_root/testroot/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/property_constraint_violation.zip/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'sling'='http://sling.apache.org/jcr/sling/1.0'> 2 | <'nt'='http://www.jcp.org/jcr/nt/1.0'> 3 | <'vlt'='http://www.day.com/jcr/vault/1.0'> 4 | <'my'='http://jackrabbit.apache.org/filevault/testing'> 5 | 6 | [my:Folder2] > nt:hierarchyNode 7 | - * (name) 8 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/namespace.zip/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'sling'='http://sling.apache.org/jcr/sling/1.0'> 2 | <'nt'='http://www.jcp.org/jcr/nt/1.0'> 3 | <'cq'='http://www.day.com/jcr/cq/1.0'> 4 | 5 | [sling:Folder] > nt:folder 6 | - * (undefined) 7 | - * (undefined) multiple 8 | + * (nt:base) = sling:Folder version 9 | 10 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/referenceable-dup.zip/jcr_root/tmp/differentparentconflicts/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/xml-nwf-truncated.zip/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'sling'='http://sling.apache.org/jcr/sling/1.0'> 2 | <'nt'='http://www.jcp.org/jcr/nt/1.0'> 3 | <'cq'='http://www.day.com/jcr/cq/1.0'> 4 | 5 | [sling:Folder] > nt:folder 6 | - * (undefined) 7 | - * (undefined) multiple 8 | + * (nt:base) = sling:Folder version 9 | 10 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/xml-nwf-truncated.zip/jcr_root/testroot/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/wcm-rollout-config-1.zip/jcr_root/libs/msm/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/wcm-rollout-config-2.zip/jcr_root/libs/msm/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/intermediate_folders.zip/jcr_root/testroot/myfolder/mychild/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/root_policy.zip/jcr_root/_rep_policy.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/wcm-rollout-config-1.zip/jcr_root/libs/msm/wcm/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/wcm-rollout-config-2.zip/jcr_root/libs/msm/wcm/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/wcm-rollout-config-2.zip/jcr_root/libs/msm/wcm/rolloutconfigs/deactivate/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /vault-rcp/src/test/resources/create_task.json: -------------------------------------------------------------------------------- 1 | { 2 | "cmd":"create", 3 | "id":"copy-geometrixx", 4 | "src":"http://admin:admin@localhost:4503/crx/-/jcr:root/content/geometrixx", 5 | "dst":"/tmp/test_geo", 6 | "batchsize": 2048, 7 | "update": true, 8 | "onlyNewer": true, 9 | "recursive": true, 10 | "throttle": 1, 11 | "excludes": [ 12 | "/content/geometrixx/en/tools(/.*)?" 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /vault-rcp/src/test/resources/edit_task.json: -------------------------------------------------------------------------------- 1 | { 2 | "cmd":"edit", 3 | "id":"copy-geometrixx", 4 | "src":"http://admin:admin@localhost:4503/crx/-/jcr:root/content/geometrixx", 5 | "dst":"/tmp/test_geo", 6 | "batchsize": 2048, 7 | "update": true, 8 | "onlyNewer": true, 9 | "recursive": true, 10 | "throttle": 1, 11 | "excludes": [ 12 | "/content/geometrixx/en/tools(/.*)?" 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /vault-validation/src/test/resources/simple-package/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_c_merge.zip/jcr_root/testroot/secured/_rep_policy.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_nt_unstructured_below_folder_aggregate.zip/jcr_root/testroot/myfolder/mychild/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_lateuser.zip/jcr_root/testroot/secured/_rep_policy.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_b2_merge.zip/jcr_root/testroot/secured/_rep_policy.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/simple_file_aggregate_with_children.zip/jcr_root/testroot/thumbnail.png.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/jackrabbit-filevault/HEAD/vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/simple_file_aggregate_with_children.zip/jcr_root/testroot/thumbnail.png.dir/_jcr_content/_dam_thumbnails/_dam_thumbnail_48.png -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_a.zip/jcr_root/testroot/secured/_rep_policy.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/principalbased.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/referenceable.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/repo_no_policy.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/repo_policy.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_b3_merge.zip/jcr_root/testroot/secured/_rep_policy.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/referenceable-dup.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/referenceable-dup.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/principalbased_nopolicy.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/principalbasedstashing.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/wcm-rollout-config-1.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/wcm-rollout-config-2.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_nodetype_on_merge.zip/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'sling'='http://sling.apache.org/jcr/sling/1.0'> 2 | <'nt'='http://www.jcp.org/jcr/nt/1.0'> 3 | 4 | [sling:Folder] > nt:folder 5 | - * (undefined) 6 | - * (undefined) multiple 7 | + * (nt:base) = sling:Folder version 8 | 9 | [sling:OrderedFolder] > sling:Folder 10 | orderable 11 | + * (nt:base) = sling:OrderedFolder version 12 | 13 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mandatory-non-residual-childnode.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/principalbasedstashing_nopolicy.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_nodetype_on_merge.zip/jcr_root/home/groups/test/lXZzTxX_ZZkvjixvqJON/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/wcm-rollout-config-1.zip/jcr_root/libs/msm/wcm/rolloutconfigs/activate/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/wcm-rollout-config-2.zip/jcr_root/libs/msm/wcm/rolloutconfigs/activate/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/property_constraint_violation.zip/jcr_root/testroot/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/simple_file_aggregate_with_children.zip/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'sling'='http://sling.apache.org/jcr/sling/1.0'> 2 | <'nt'='http://www.jcp.org/jcr/nt/1.0'> 3 | <'dam'='http://www.day.com/dam/1.0'> 4 | 5 | [sling:Folder] > nt:folder 6 | - * (undefined) 7 | - * (undefined) multiple 8 | + * (nt:base) = sling:Folder version 9 | 10 | [dam:Thumbnails] 11 | mixin 12 | + dam:thumbnails (nt:folder) 13 | 14 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/wcm-rollout-config-1.zip/jcr_root/libs/msm/wcm/rolloutconfigs/deactivate/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/principalbased.zip/jcr_root/home/users/system/intermediate/tBUjdNwIM-i9bTqCYP5D/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/import_modes_test_generichandler2_docview.zip/jcr_root/testroot/merge.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/import_modes_test_generichandler2_docview.zip/jcr_root/testroot/replace.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/import_modes_test_generichandler2_docview.zip/jcr_root/testroot/update.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/enhanced_file_aggregate.zip/jcr_root/testroot/tika/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | text/plain 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/principalbased_nopolicy.zip/jcr_root/home/users/system/intermediate/tBUjdNwIM-i9bTqCYP5D/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/principalbasedstashing.zip/jcr_root/home/users/system/intermediate/tBUjdNwIM-i9bTqCYP5D/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/import_modes_test_generichandler2_docview.zip/jcr_root/testroot/merge_properties.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/import_modes_test_generichandler2_docview.zip/jcr_root/testroot/update_properties.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/principalbasedstashing_nopolicy.zip/jcr_root/home/users/system/intermediate/tBUjdNwIM-i9bTqCYP5D/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/simple_file_aggregate_with_children.zip/jcr_root/testroot/thumbnail.png.dir/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/wcm-rollout-config-1.zip/jcr_root/libs/msm/wcm/rolloutconfigs/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/wcm-rollout-config-2.zip/jcr_root/libs/msm/wcm/rolloutconfigs/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /vault-core/src/test/resources/org/apache/jackrabbit/vault/fs/io/DocViewFormat/formatted.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/import_modes_test_filehandler.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/import_modes_test_missing_artifacts.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/enhanced_file_aggregate.zip/jcr_root/testroot/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/import_modes_test_generichandler2_docview.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/import_modes_test_generichandler_docview.zip/META-INF/vault/filter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/protected_properties.zip/jcr_root/testroot2/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /.asf.yaml: -------------------------------------------------------------------------------- 1 | # https://cwiki.apache.org/confluence/display/INFRA/git+-+.asf.yaml+features#Git.asf.yamlfeatures-GitHubsettings 2 | github: 3 | description: "Apache Jackrabbit FileVault" 4 | homepage: https://jackrabbit.apache.org/filevault/index.html 5 | labels: 6 | - java 7 | - jcr 8 | - jackrabbit 9 | - oak 10 | - repository 11 | autolink_jira: 12 | - JCRVLT 13 | - OAK 14 | - JCR 15 | - SLING 16 | - FELIX 17 | dependabot_alerts: true 18 | dependabot_updates: false 19 | protected_branches: 20 | master: {} 21 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/referenceable.zip/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'vlt'='http://www.day.com/jcr/vault/1.0'> 2 | <'sling'='http://sling.apache.org/jcr/sling/1.0'> 3 | <'nt'='http://www.jcp.org/jcr/nt/1.0'> 4 | <'rep'='internal'> 5 | 6 | [vlt:FullCoverage] 7 | mixin 8 | 9 | [sling:Folder] > nt:folder 10 | - * (undefined) multiple 11 | - * (undefined) 12 | + * (nt:base) = sling:Folder version 13 | 14 | [rep:RepoAccessControllable] 15 | mixin 16 | + rep:repoPolicy (rep:Policy) protected ignore 17 | 18 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/referenceable-dup.zip/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'vlt'='http://www.day.com/jcr/vault/1.0'> 2 | <'sling'='http://sling.apache.org/jcr/sling/1.0'> 3 | <'nt'='http://www.jcp.org/jcr/nt/1.0'> 4 | <'rep'='internal'> 5 | 6 | [vlt:FullCoverage] 7 | mixin 8 | 9 | [sling:Folder] > nt:folder 10 | - * (undefined) multiple 11 | - * (undefined) 12 | + * (nt:base) = sling:Folder version 13 | 14 | [rep:RepoAccessControllable] 15 | mixin 16 | + rep:repoPolicy (rep:Policy) protected ignore 17 | 18 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/repo_policy.zip/jcr_root/_rep_repoPolicy.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 8 | 12 | 13 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/stashing/update.zip/jcr_root/tmp/.content.xml: -------------------------------------------------------------------------------- 1 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/protected_properties.zip/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'sling'='http://sling.apache.org/jcr/sling/1.0'> 2 | <'nt'='http://www.jcp.org/jcr/nt/1.0'> 3 | <'vlt'='http://www.day.com/jcr/vault/1.0'> 4 | <'my'='http://jackrabbit.apache.org/filevault/testing'> 5 | 6 | // some operations fail due to residual protected property type (https://issues.apache.org/jira/browse/OAK-9695) 7 | [my:Folder] > nt:hierarchyNode 8 | - * (boolean) protected 9 | - * (string) 10 | - * (string) multiple 11 | [my:mixin] 12 | MIXIN -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/protected_properties.zip/jcr_root/testroot/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_d.zip/jcr_root/testroot/secured/_rep_policy.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 8 | 12 | 13 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/folder-without-docview-element.zip/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'sling'='http://sling.apache.org/jcr/sling/1.0'> 2 | <'nt'='http://www.jcp.org/jcr/nt/1.0'> 3 | <'rep'='internal'> 4 | 5 | [sling:OrderedFolder] > sling:Folder 6 | orderable 7 | + * (nt:base) = sling:OrderedFolder version 8 | 9 | [sling:Folder] > nt:folder 10 | - * (undefined) multiple 11 | - * (undefined) 12 | + * (nt:base) = sling:Folder version 13 | 14 | [rep:RepoAccessControllable] 15 | mixin 16 | + rep:repoPolicy (rep:Policy) protected ignore 17 | 18 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/referenceable-dup.zip/jcr_root/tmp/sameparentconflicts/referenceable.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | -------------------------------------------------------------------------------- /vault-core/src/test/resources/org/apache/jackrabbit/vault/fs/filter/workspacefilters/complex-expected.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_b.zip/jcr_root/testroot/secured/_rep_policy.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 8 | 13 | 14 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/referenceable-dup.zip/jcr_root/tmp/sameparentconflicts/duplicate.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_b_merge.zip/jcr_root/testroot/secured/_rep_policy.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 8 | 13 | 14 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/xml-nwf-truncated.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_b_preserve.zip/jcr_root/testroot/secured/_rep_policy.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 8 | 13 | 14 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/namespace.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_nodetype_on_merge.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/intermediate_folders.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_a.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_b.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_d.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_e.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/protected_properties.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_b2_merge.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_b3_merge.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_b_merge.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_c_merge.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_lateuser.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/oak_ac_content_test.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/import_modes_test_filehandler.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_b_preserve.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/property_constraint_violation.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/import_modes_test_missing_artifacts.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_unsecured_nodetype.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/import_modes_test_generichandler2_docview.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/import_modes_test_generichandler_docview.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/repo_no_policy.zip/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'rep'='internal'> 2 | 3 | [rep:Privileges] 4 | - rep:next (long) mandatory protected multiple 5 | + * (rep:Privilege) = rep:Privilege protected abort 6 | 7 | [rep:Privilege] 8 | - rep:isAbstract (boolean) protected 9 | - rep:aggregates (name) protected multiple 10 | - rep:bits (long) mandatory protected multiple 11 | 12 | [rep:Restrictions] 13 | - * (undefined) protected 14 | - * (undefined) protected multiple 15 | 16 | [rep:RepoAccessControllable] 17 | mixin 18 | + rep:repoPolicy (rep:Policy) protected ignore 19 | 20 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/repo_policy.zip/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'rep'='internal'> 2 | 3 | [rep:Privileges] 4 | - rep:next (long) mandatory protected multiple 5 | + * (rep:Privilege) = rep:Privilege protected abort 6 | 7 | [rep:Privilege] 8 | - rep:isAbstract (boolean) protected 9 | - rep:aggregates (name) protected multiple 10 | - rep:bits (long) mandatory protected multiple 11 | 12 | [rep:Restrictions] 13 | - * (undefined) protected 14 | - * (undefined) protected multiple 15 | 16 | [rep:RepoAccessControllable] 17 | mixin 18 | + rep:repoPolicy (rep:Policy) protected ignore 19 | 20 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/simple_file_aggregate_with_children.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/external_hook_failing_in_installed_phase.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/simple_file_aggregate_without_children.zip/jcr_root/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/protected_properties.zip/jcr_root/testroot3/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/stashing/create.zip/jcr_root/tmp/.content.xml: -------------------------------------------------------------------------------- 1 | 7 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/badnamespacenames.zip/jcr_root/tmp/badnamespacenames.xml: -------------------------------------------------------------------------------- 1 | 6 | 8 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/referenceable-dup.zip/jcr_root/tmp/differentparentconflicts/referenceable.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/wcm-rollout-config-2.zip/jcr_root/libs/msm/wcm/rolloutconfigs/default/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_e.zip/jcr_root/testroot/secured/_rep_policy.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 8 | 12 | 16 | 17 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/referenceable-dup.zip/jcr_root/tmp/differentparentconflicts/duplicate.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/oak_ac_content_test.zip/jcr_root/testroot/secured/_rep_policy.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 8 | 13 | 14 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/enhanced_file_aggregate.zip/META-INF/vault/properties.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | root 5 | true 6 | enhanced-file-aggregate-package 7 | 2022-05-26T10:38:55.609Z 8 | 1.0.0 9 | application 10 | false 11 | testpackages 12 | test package containing enhanced file aggregate 13 | 14 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/referenceable.zip/jcr_root/tmp/referenceable.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/wcm-rollout-config-1.zip/jcr_root/libs/msm/wcm/rolloutconfigs/default/.content.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vault-cli/src/main/appassembler/license-header.txt: -------------------------------------------------------------------------------- 1 | 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/wcm-rollout-config-1.zip/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'sling'='http://sling.apache.org/jcr/sling/1.0'> 2 | <'nt'='http://www.jcp.org/jcr/nt/1.0'> 3 | <'cq'='http://www.day.com/jcr/cq/1.0'> 4 | <'mix'='http://www.jcp.org/jcr/mix/1.0'> 5 | <'rep'='internal'> 6 | 7 | [sling:OrderedFolder] > sling:Folder 8 | orderable 9 | + * (nt:base) = sling:OrderedFolder version 10 | 11 | [sling:Folder] > nt:folder 12 | - * (undefined) multiple 13 | - * (undefined) 14 | + * (nt:base) = sling:Folder version 15 | 16 | [cq:RolloutConfig] > mix:title 17 | orderable 18 | - cq:trigger (string) mandatory 19 | + * (cq:LiveSyncAction) mandatory 20 | 21 | [cq:LiveSyncAction] > nt:unstructured 22 | 23 | 24 | [rep:RepoAccessControllable] 25 | mixin 26 | + rep:repoPolicy (rep:Policy) protected ignore 27 | 28 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/wcm-rollout-config-2.zip/META-INF/vault/nodetypes.cnd: -------------------------------------------------------------------------------- 1 | <'sling'='http://sling.apache.org/jcr/sling/1.0'> 2 | <'nt'='http://www.jcp.org/jcr/nt/1.0'> 3 | <'cq'='http://www.day.com/jcr/cq/1.0'> 4 | <'mix'='http://www.jcp.org/jcr/mix/1.0'> 5 | <'rep'='internal'> 6 | 7 | [sling:OrderedFolder] > sling:Folder 8 | orderable 9 | + * (nt:base) = sling:OrderedFolder version 10 | 11 | [sling:Folder] > nt:folder 12 | - * (undefined) multiple 13 | - * (undefined) 14 | + * (nt:base) = sling:Folder version 15 | 16 | [cq:RolloutConfig] > mix:title 17 | orderable 18 | - cq:trigger (string) mandatory 19 | + * (cq:LiveSyncAction) mandatory 20 | 21 | [cq:LiveSyncAction] > nt:unstructured 22 | 23 | [rep:RepoAccessControllable] 24 | mixin 25 | + rep:repoPolicy (rep:Policy) protected ignore 26 | 27 | -------------------------------------------------------------------------------- /vault-core/src/test/resources/test-packages/atomic-counter-test/META-INF/vault/properties.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FileVault Package Properties 5 | admin 6 | atomic-counter-test 7 | 2017-02-14T09:33:23.588+09:00 8 | admin 9 | 2017-02-14T09:33:23.694+09:00 10 | 1 11 | 12 | 13 | 2 14 | 15 | 2017-02-14T09:33:23.588+09:00 16 | my_packages 17 | admin 18 | 19 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/namespace.zip/META-INF/vault/properties.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FileVault Package Properties 5 | admin 6 | import-modes-test 7 | 2011-11-15T09:45:14.664+01:00 8 | admin 9 | 2011-11-15T09:45:14.685+01:00 10 | 1 11 | 12 | 13 | 2 14 | 15 | 2011-11-15T09:45:14.664+01:00 16 | 17 | admin 18 | 19 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/intermediate_folders.zip/META-INF/vault/properties.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FileVault Package Properties 5 | admin 6 | import-modes-test 7 | 2011-11-15T09:45:14.664+01:00 8 | admin 9 | 2011-11-15T09:45:14.685+01:00 10 | 1 11 | 12 | 13 | 2 14 | 15 | 2011-11-15T09:45:14.664+01:00 16 | 17 | admin 18 | 19 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/protected_properties.zip/META-INF/vault/properties.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FileVault Package Properties 5 | admin 6 | import-modes-test 7 | 2011-11-15T09:45:14.664+01:00 8 | admin 9 | 2011-11-15T09:45:14.685+01:00 10 | 1 11 | 12 | 13 | 2 14 | 15 | 2011-11-15T09:45:14.664+01:00 16 | 17 | admin 18 | 19 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/repo_no_policy.zip/META-INF/vault/properties.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FileVault Package Properties 5 | admin 6 | repo_policy 7 | 2014-02-25T11:54:54.245-08:00 8 | admin 9 | 2014-02-25T11:54:54.351-08:00 10 | 1 11 | 12 | 13 | 2 14 | 15 | 2014-02-25T11:54:54.245-08:00 16 | test 17 | admin 18 | 19 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/repo_policy.zip/META-INF/vault/properties.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FileVault Package Properties 5 | admin 6 | repo_policy 7 | 2014-02-25T11:54:54.245-08:00 8 | admin 9 | 2014-02-25T11:54:54.351-08:00 10 | 1 11 | 12 | 13 | 2 14 | 15 | 2014-02-25T11:54:54.245-08:00 16 | test 17 | admin 18 | 19 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/xml-nwf-truncated.zip/META-INF/vault/properties.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FileVault Package Properties 5 | admin 6 | import-modes-test 7 | 2011-11-15T09:45:14.664+01:00 8 | admin 9 | 2011-11-15T09:45:14.685+01:00 10 | 1 11 | 12 | 13 | 2 14 | 15 | 2011-11-15T09:45:14.664+01:00 16 | 17 | admin 18 | 19 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/import_modes_test_filehandler.zip/META-INF/vault/properties.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FileVault Package Properties 5 | admin 6 | import-modes-test 7 | 2011-11-15T09:45:14.664+01:00 8 | admin 9 | 2011-11-15T09:45:14.685+01:00 10 | 1 11 | 12 | 13 | 2 14 | 15 | 2011-11-15T09:45:14.664+01:00 16 | 17 | admin 18 | 19 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/property_constraint_violation.zip/META-INF/vault/properties.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FileVault Package Properties 5 | admin 6 | import-modes-test 7 | 2011-11-15T09:45:14.664+01:00 8 | admin 9 | 2011-11-15T09:45:14.685+01:00 10 | 1 11 | 12 | 13 | 2 14 | 15 | 2011-11-15T09:45:14.664+01:00 16 | 17 | admin 18 | 19 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/import_modes_test_missing_artifacts.zip/META-INF/vault/properties.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FileVault Package Properties 5 | admin 6 | import-modes-test 7 | 2011-11-15T09:45:14.664+01:00 8 | admin 9 | 2011-11-15T09:45:14.685+01:00 10 | 1 11 | 12 | 13 | 2 14 | 15 | 2011-11-15T09:45:14.664+01:00 16 | 17 | admin 18 | 19 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/referenceable.zip/META-INF/vault/properties.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FileVault Package Properties 5 | admin 6 | test_referenceable 7 | 2015-12-16T16:59:10.779+01:00 8 | admin 9 | 2015-12-16T16:59:10.795+01:00 10 | 5 11 | 12 | 13 | 2 14 | 15 | 2015-12-16T16:59:10.779+01:00 16 | my_packages 17 | admin 18 | 19 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/badnamespacenames.zip/META-INF/vault/properties.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FileVault Package Properties 5 | admin 6 | test_referenceable 7 | 2015-12-16T16:59:10.779+01:00 8 | admin 9 | 2015-12-16T16:59:10.795+01:00 10 | 5 11 | 12 | 13 | 2 14 | 15 | 2015-12-16T16:59:10.779+01:00 16 | my_packages 17 | admin 18 | 19 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/import_modes_test_generichandler_docview.zip/META-INF/vault/properties.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FileVault Package Properties 5 | admin 6 | import-modes-test 7 | 2011-11-15T09:45:14.664+01:00 8 | admin 9 | 2011-11-15T09:45:14.685+01:00 10 | 1 11 | 12 | 13 | 2 14 | 15 | 2011-11-15T09:45:14.664+01:00 16 | 17 | admin 18 | 19 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/referenceable-dup.zip/META-INF/vault/properties.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FileVault Package Properties 5 | admin 6 | test_referenceable 7 | 2015-12-16T16:59:10.779+01:00 8 | admin 9 | 2015-12-16T16:59:10.795+01:00 10 | 5 11 | 12 | 13 | 2 14 | 15 | 2015-12-16T16:59:10.779+01:00 16 | my_packages 17 | admin 18 | 19 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/stashing/create.zip/META-INF/vault/properties.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FileVault Package Properties 5 | admin 6 | test_stashing_create 7 | 2015-12-16T16:59:10.779+01:00 8 | admin 9 | 2015-12-16T16:59:10.795+01:00 10 | 5 11 | 12 | 13 | 2 14 | 15 | 2015-12-16T16:59:10.779+01:00 16 | my_packages 17 | admin 18 | 19 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/stashing/update.zip/META-INF/vault/properties.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FileVault Package Properties 5 | admin 6 | test_stashing_update 7 | 2015-12-16T16:59:10.779+01:00 8 | admin 9 | 2015-12-16T16:59:10.795+01:00 10 | 5 11 | 12 | 13 | 2 14 | 15 | 2015-12-16T16:59:10.779+01:00 16 | my_packages 17 | admin 18 | 19 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/import_modes_test_generichandler2_docview.zip/META-INF/vault/properties.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FileVault Package Properties 5 | admin 6 | import-modes-test 7 | 2011-11-15T09:45:14.664+01:00 8 | admin 9 | 2011-11-15T09:45:14.685+01:00 10 | 1 11 | 12 | 13 | 2 14 | 15 | 2011-11-15T09:45:14.664+01:00 16 | 17 | admin 18 | 19 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_nodetype_on_merge.zip/META-INF/vault/properties.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Testpackage for folder nodeType on filters with mode merge 5 | admin 6 | test_nodetype_on_merge 7 | 2011-06-07T14:32:17.432-07:00 8 | admin 9 | 2011-06-07T14:32:17.502-07:00 10 | 1 11 | 12 | 13 | 2 14 | 15 | my_packages 16 | /etc/packages/my_packages/test_nodetype_on_merge 17 | 18 | -------------------------------------------------------------------------------- /vault-core/max-target.bndrun: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | -include ../target-osgi-environment/max-target-osgi-environment/max-target.bndrun -------------------------------------------------------------------------------- /vault-core/min-target.bndrun: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | -include ../target-osgi-environment/min-target-osgi-environment/min-target.bndrun -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/org/apache/jackrabbit/vault/sync/impl/testfile1.txt: -------------------------------------------------------------------------------- 1 | /* 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | */ 17 | foo -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/org/apache/jackrabbit/vault/sync/impl/testfile2.txt: -------------------------------------------------------------------------------- 1 | /* 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | */ 17 | bar -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_d.zip/META-INF/vault/properties.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FileVault Package Properties 5 | admin 6 | mode_ac_test_d 7 | 2011-11-15T09:43:22.972+01:00 8 | admin 9 | 2011-11-15T09:43:22.993+01:00 10 | 1 11 | 12 | 13 | 2 14 | 15 | 2011-11-15T09:43:22.972+01:00 16 | 17 | admin 18 | merge 19 | 20 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_e.zip/META-INF/vault/properties.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FileVault Package Properties 5 | admin 6 | mode_ac_test_d 7 | 2011-11-15T09:43:22.972+01:00 8 | admin 9 | 2011-11-15T09:43:22.993+01:00 10 | 1 11 | 12 | 13 | 2 14 | 15 | 2011-11-15T09:43:22.972+01:00 16 | 17 | admin 18 | merge 19 | 20 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/root_policy.zip/META-INF/vault/properties.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FileVault Package Properties 5 | admin 6 | root_policy 7 | 2011-11-15T09:43:22.972+01:00 8 | admin 9 | 2011-11-15T09:43:22.993+01:00 10 | 1 11 | 12 | 13 | 2 14 | 15 | 2011-11-15T09:43:22.972+01:00 16 | 17 | admin 18 | overwrite 19 | 20 | -------------------------------------------------------------------------------- /vault-validation/max-target.bndrun: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | -include ../target-osgi-environment/max-target-osgi-environment/max-target.bndrun -------------------------------------------------------------------------------- /vault-validation/min-target.bndrun: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | -include ../target-osgi-environment/min-target-osgi-environment/min-target.bndrun -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_a.zip/META-INF/vault/properties.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FileVault Package Properties 5 | admin 6 | mode_ac_test_a 7 | 2011-11-15T09:43:22.972+01:00 8 | admin 9 | 2011-11-15T09:43:22.993+01:00 10 | 1 11 | 12 | 13 | 2 14 | 15 | 2011-11-15T09:43:22.972+01:00 16 | 17 | admin 18 | overwrite 19 | 20 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_b.zip/META-INF/vault/properties.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FileVault Package Properties 5 | admin 6 | mode_ac_test_b 7 | 2011-11-15T09:45:14.664+01:00 8 | admin 9 | 2011-11-15T09:45:14.685+01:00 10 | 1 11 | 12 | 13 | 2 14 | 15 | 2011-11-15T09:45:14.664+01:00 16 | 17 | admin 18 | overwrite 19 | 20 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/test_nt_unstructured_below_folder_aggregate.zip/META-INF/vault/properties.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FileVault Test Implicit Definitions 5 | admin 6 | implicit-definition-test 7 | 2011-11-15T09:45:14.664+01:00 8 | admin 9 | 2011-11-15T09:45:14.685+01:00 10 | 1 11 | 12 | 13 | 2 14 | 15 | 2011-11-15T09:45:14.664+01:00 16 | 17 | admin 18 | 19 | -------------------------------------------------------------------------------- /vault-rcp/readme.md: -------------------------------------------------------------------------------- 1 | 17 | Please read [Vault Remote Copy](../src/site/markdown/rcp.md) for more details. 18 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/oak_ac_content_test.zip/META-INF/vault/properties.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FileVault Package Properties 5 | admin 6 | oak_ac_content_test 7 | 2011-11-15T09:43:22.972+01:00 8 | admin 9 | 2011-11-15T09:43:22.993+01:00 10 | 1 11 | 12 | 13 | 2 14 | 15 | 2011-11-15T09:43:22.972+01:00 16 | 17 | admin 18 | merge 19 | 20 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_b2_merge.zip/META-INF/vault/properties.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FileVault Package Properties 5 | admin 6 | mode_ac_test_b2_merge 7 | 2011-11-15T09:45:14.664+01:00 8 | admin 9 | 2011-11-15T09:45:14.685+01:00 10 | 1 11 | 12 | 13 | 2 14 | 15 | 2011-11-15T09:45:14.664+01:00 16 | 17 | admin 18 | merge 19 | 20 | -------------------------------------------------------------------------------- /vault-core-it/vault-core-integration-tests/src/main/resources/test-packages/mode_ac_test_b3_merge.zip/META-INF/vault/properties.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FileVault Package Properties 5 | admin 6 | mode_ac_test_b3_merge 7 | 2011-11-15T09:45:14.664+01:00 8 | admin 9 | 2011-11-15T09:45:14.685+01:00 10 | 1 11 | 12 | 13 | 2 14 | 15 | 2011-11-15T09:45:14.664+01:00 16 | 17 | admin 18 | merge 19 | 20 | --------------------------------------------------------------------------------