/* * Copyright 2015 Red Hat, Inc. and/or its affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.drools.compiler; import java.io.Serializable; public class Alarm implements Serializable { private String message; private int number; public Alarm() { } public Alarm(final String message) { this.message = message; } public String toString() { return "[Alarm message=" + this.message + "]"; } /** * @inheritDoc */ public int hashCode() { final int PRIME = 31; int result = 1; result = PRIME * result + ((this.message == null) ? 0 : this.message.hashCode()); return result; } /** * @inheritDoc */ public boolean equals(final Object obj) { if ( this == obj ) { return true; } if ( obj == null ) { return false; } if ( getClass() != obj.getClass() ) { return false; } final Alarm other = (Alarm) obj; if ( this.message == null ) { if ( other.message != null ) { return false; } } else if ( !this.message.equals( other.message ) ) { return false; } return true; } /** * @return the message */ public String getMessage() { return this.message; } /** * @param message the message to set */ public void setMessage(final String message) { this.message = message; } public int getNumber() { return number; } public void setNumber(int number) { this.number = number; } public void incrementNumber() { this.number++;; } }