//Create a class for location variable package Location class LocationVar { private int contactBookEnabled private def modes private String mode private List contacts private List phoneNumbers private Phrase helloHome LocationVar() { this.modes = [[name: "home"],[name: "away"],[name: "night"]] this.mode = "home" this.helloHome = new Phrase() this.contactBookEnabled = 1 this.contacts = ['AJ'] this.phoneNumbers = [9495379373] } }