public class Update { Update(String message) { this.message = message; } String message; public String toString() { return message; } }