001    package org.springframework.beans;
002    
003    import java.io.File;
004    
005    public class MultipleCopyrightIgnores extends CommonIgnoresFilter {
006    
007        @Override
008        public boolean accept(File file) {
009            String path = file.getAbsolutePath();
010    
011            if (path.endsWith(".xsd") && contains(path, "/impl/src/main/resources/schema/")) {
012                return false;
013            } else {
014                return super.accept(file);
015            }
016        }
017    }