Created
March 9, 2017 02:51
-
-
Save eternnoir/ef11a03b40afee7d4fbcc8ebcff40fc7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.enoir.droolstest; | |
public class Message { | |
private String message; | |
public static String GOODBYE = "1" ; | |
public static String HELLO="0"; | |
private String status; | |
public String getMessage() { | |
return message; | |
} | |
public void setMessage(String message) { | |
this.message = message; | |
} | |
public String getStatus() { | |
return status; | |
} | |
public void setStatus(String status) { | |
this.status = status; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment