kwin commented on code in PR #378:
URL: 
https://github.com/apache/jackrabbit-filevault/pull/378#discussion_r2330814365


##########
vault-core/src/main/java/org/apache/jackrabbit/vault/fs/io/ImportOptions.java:
##########
@@ -480,6 +484,26 @@ public void setIdConflictPolicy(@NotNull IdConflictPolicy 
idConflictPolicy) {
         this.idConflictPolicy = idConflictPolicy;
     }
 
+    /**
+     * Allows to skip filter checks when importing packages; you can set this
+     * to {{code true}} if you are sure that there this package contains no 
content
+     * which would be rejected by filters.
+     * This only affects checks against items in the package, but not existing 
items in
+     * the repository.
+     * @param skipFilterChecksOnImport if true skip the checks
+     */
+    public void setSkipFilterChecksOnImport (boolean skipFilterChecksOnImport) 
{
+        this.skipFilterChecksOnImport = skipFilterChecksOnImport;
+    }
+
+    /**
+     * get the filter check skip policy
+     * @return true if the filter check is skipped
+     */
+    public boolean getskipFilterChecksOnImport() {

Review Comment:
   ```suggestion
       public boolean getSkipFilterChecksOnImport() {
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@jackrabbit.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to