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

org.openl.rules.rest.compile.MessageDescription Maven / Gradle / Ivy

There is a newer version: 5.27.9
Show newest version
package org.openl.rules.rest.compile;

import org.openl.message.Severity;

public class MessageDescription {

    private final long id;
    private final String summary;
    private final Severity severity;

    public MessageDescription(long id, String summary, Severity severity) {
        this.id = id;
        this.summary = summary;
        this.severity = severity;
    }

    public long getId() {
        return id;
    }

    public String getSummary() {
        return summary;
    }

    public Severity getSeverity() {
        return severity;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy