Skip to content

Instantly share code, notes, and snippets.

@eternnoir
Created March 9, 2017 02:51
Show Gist options
  • Save eternnoir/ef11a03b40afee7d4fbcc8ebcff40fc7 to your computer and use it in GitHub Desktop.
Save eternnoir/ef11a03b40afee7d4fbcc8ebcff40fc7 to your computer and use it in GitHub Desktop.
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