![JAR search and dependency download from the Maven repository](/logo.png)
org.openl.rules.rest.compile.MessageDescription Maven / Gradle / Ivy
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