| 1 13 package info.magnolia.module.admininterface.commands; 14 15 import info.magnolia.commands.MgnlCommand; 16 17 18 public abstract class BaseRepositoryCommand extends MgnlCommand { 19 20 private String path = "/"; 21 22 private String repository; 23 24 private String uuid; 25 26 29 public String getRepository() { 30 return repository; 31 } 32 33 36 public void setRepository(String repository) { 37 this.repository = repository; 38 } 39 40 43 public String getPath() { 44 return path; 45 } 46 47 50 public void setPath(String path) { 51 this.path = path; 52 } 53 54 57 public String getUuid() { 58 return this.uuid; 59 } 60 61 64 public void setUuid(String uuid) { 65 this.uuid = uuid; 66 } 67 68 } 69 | Popular Tags |