All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.craftercms.virusscanner.impl.NullVirusScannerImpl Maven / Gradle / Ivy

There is a newer version: 4.3.1
Show newest version
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