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

xyz.capybara.clamav.commands.scan.result.ScanResult.kt Maven / Gradle / Ivy

There is a newer version: 2.1.2
Show newest version
package xyz.capybara.clamav.commands.scan.result

/**
 * This class holds the result of an antivirus scan.
 * It contains a status and a map filled as following:
 *
 *  * Key: infected file path
 *  * Value: list of viruses found in the file
 *
 */
data class ScanResult(val status: Status, val foundViruses: Map> = emptyMap()) {
    enum class Status {
        OK, VIRUS_FOUND
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy