/** * */ package org.richfaces.javascript; import javax.faces.application.FacesMessage; /** * @author asmirnov * */ public final class Message { private final int severity; private final String detail; private final String summary; public Message(int severity, String detail, String summary) { this.severity = severity; this.detail = detail; this.summary = summary; } public Message(FacesMessage msg) { this.severity = msg.getSeverity().getOrdinal(); this.summary = msg.getSummary(); this.detail = msg.getDetail(); } /** * @return the severity */ public int getSeverity() { return severity; } /** * @return the detail */ public String getDetail() { return detail; } /** * @return the summary */ public String getSummary() { return summary; } /* * (non-Javadoc) * * @see java.lang.Object#hashCode() */ @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((this.detail == null) ? 0 : this.detail.hashCode()); result = prime * result + this.severity; result = prime * result + ((this.summary == null) ? 0 : this.summary.hashCode()); return result; } /* * (non-Javadoc) * * @see java.lang.Object#equals(java.lang.Object) */ @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } Message other = (Message) obj; if (this.detail == null) { if (other.detail != null) { return false; } } else if (!this.detail.equals(other.detail)) { return false; } if (this.severity != other.severity) { return false; } if (this.summary == null) { if (other.summary != null) { return false; } } else if (!this.summary.equals(other.summary)) { return false; } return true; } }