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

org.bdware.doip.audit.AuditRule Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy