package hello.rules; public class GreetingRule { int from; int to; String greeting; public int getFrom() { return from; } public void setFrom(int from) { this.from = from; } public int getTo() { return to; } public void setTo(int to) { this.to = to; } public String getGreeting() { return greeting; } public void setGreeting(String greeting) { this.greeting = greeting; } public String toString() { return "["+from+";"+to+"]: "+greeting; } }