1 13 package info.magnolia.cms.module; 14 15 import info.magnolia.cms.core.Content; 16 import info.magnolia.cms.core.HierarchyManager; 17 18 import java.util.Map ; 19 20 21 25 public class ModuleConfig { 26 27 30 private Map sharedHierarchyManagers; 31 32 35 private Map initParameters; 36 37 40 private String moduleName; 41 42 45 private String moduleDescription; 46 47 50 private HierarchyManager hierarchyManager; 51 52 55 private Content localStore; 56 57 60 public String getModuleName() { 61 return this.moduleName; 62 } 63 64 67 public String getModuleDescription() { 68 return this.moduleDescription; 69 } 70 71 74 public Map getSharedHierarchyManagers() { 75 return this.sharedHierarchyManagers; 76 } 77 78 81 public HierarchyManager getHierarchyManager() { 82 return this.hierarchyManager; 83 } 84 85 88 public Map getInitParameters() { 89 return this.initParameters; 90 } 91 92 95 public Content getLocalStore() { 96 return this.localStore; 97 } 98 99 102 public void setModuleName(String value) { 103 this.moduleName = value; 104 } 105 106 109 public void setModuleDescription(String value) { 110 this.moduleDescription = value; 111 } 112 113 116 public void setInitParameters(Map initParams) { 117 this.initParameters = initParams; 118 } 119 120 123 public void setHierarchyManager(HierarchyManager manager) { 124 this.hierarchyManager = manager; 125 } 126 127 130 public void setSharedHierarchyManagers(Map shared) { 131 this.sharedHierarchyManagers = shared; 132 } 133 134 137 public void setLocalStore(Content localStore) { 138 this.localStore = localStore; 139 } 140 } 141 | Popular Tags |