org.craftercms.virusscanner.impl.NullVirusScannerImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of crafter-virus-scanner Show documentation
Show all versions of crafter-virus-scanner Show documentation
Crafter Social Virus Scanner
package org.craftercms.virusscanner.impl;
import java.io.InputStream;
import org.craftercms.virusscanner.api.VirusScanner;
/**
* Dummy virus scanner that does nothing
*/
public class NullVirusScannerImpl implements VirusScanner {
@Override
public void scan(final String filename) {
}
@Override
public void scan(final InputStream inputStream) {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy