org.bdware.doip.audit.AuditRule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of doip-audit-tool Show documentation
Show all versions of doip-audit-tool Show documentation
doip audit tool developed by bdware
package org.bdware.doip.audit;
/**
* A class defining the audit rule format.
*/
public class AuditRule {
/**
* The type identifier of the rule.
*/
int type;
/**
* The display name of the rule.
*/
String displayname;
/**
* A description of the rule.
*/
String description;
public AuditRule() {}
public AuditRule(int type, String displayname, String description) {
this.type = type;
this.displayname = displayname;
this.description = description;
}
}