1 package ch.busyboxes.agoo.controller.form; 2 3 /** 4 * This represents the form for creating a new watched folder 5 * 6 * @author julien@busyboxes.ch 7 */ 8 public class FolderAdditionForm { 9 10 /** the watched folder's path */ 11 private String folderPath; 12 13 /** 14 * Returns the watched folder's path 15 * 16 * @return the folderPath 17 */ 18 public String getFolderPath() { 19 return folderPath; 20 } 21 22 /** 23 * Sets the watched folder's path 24 * 25 * @param folderPath the folderPath to set 26 */ 27 public void setFolderPath(String folderPath) { 28 this.folderPath = folderPath; 29 } 30 31 }