You may need to create a new method in your Use Class as follows:public String variableDump() { return new ToStringBuilder(this).// All your variables append("name", name). append("age", age). append("smoker", smoker). toString(); }Then you can call this function in your HTL Template to dump a...