com.trend.cloudone.amaas.datamodel.Malware Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of file-security-java-sdk Show documentation
Show all versions of file-security-java-sdk Show documentation
Trend Vision One File Security Java SDK
The newest version!
package com.trend.cloudone.amaas.datamodel;
/**
* Data object for a detected malware.
*/
public class Malware {
private String name;
private String fileName;
private String type;
private int fileType;
private String fileTypeName;
private int fileSubType;
private String fileSubTypeName;
/**
* Get name of the malware.
* @return name of the malware
*/
public String getName() {
return name;
}
/**
* Set name of the malware.
* @param name name of the malware
*/
public void setName(final String name) {
this.name = name;
}
/**
* Get file name where malware detected.
* @return file name where malware detected
*/
public String getFileName() {
return fileName;
}
/**
* Set file name where malware detected.
* @param fileName file name where malware detected
*/
public void setFileName(final String fileName) {
this.fileName = fileName;
}
/**
* Get type of the detected malware.
* @return type of the detected malware
*/
public String getType() {
return type;
}
/**
* Set type of the detected malware.
* @param type type of the detected malware
*/
public void setType(final String type) {
this.type = type;
}
/**
* Get file type of the scanned file.
* @return file type of the scanned file
*/
public int getFileType() {
return fileType;
}
/**
* Get file type of the scanned file.
* @param fileType file type of the scanned file
*/
public void setFileType(final int fileType) {
this.fileType = fileType;
}
/**
* Get name of the file type.
* @return name of the file type
*/
public String getFileTypeName() {
return fileTypeName;
}
/**
* Set name of the file type.
* @param fileTypeName name of the file type
*/
public void setFileTypeName(final String fileTypeName) {
this.fileTypeName = fileTypeName;
}
/**
* Get sub type of the scanned file.
* @return sub type of the scanned file
*/
public int getFileSubType() {
return fileSubType;
}
/**
* Set sub type of the scanned file.
* @param fileSubType sub type of the scanned file
*/
public void setFileSubType(final int fileSubType) {
this.fileSubType = fileSubType;
}
/**
* Get name of the file sub type.
* @return name of the file sub type
*/
public String getFileSubTypeName() {
return fileSubTypeName;
}
/**
* Set name of the file sub type.
* @param fileSubTypeName name of the file sub type
*/
public void setFileSubTypeName(final String fileSubTypeName) {
this.fileSubTypeName = fileSubTypeName;
}
}