1 16 package org.roller.pojos; 17 18 import java.io.Serializable ; 19 20 import org.roller.pojos.PersistentObject; 21 22 27 public class PlanetConfigData extends PersistentObject implements Serializable 28 { 29 30 protected String id; 31 32 33 protected PlanetGroupData defaultGroup; 34 35 36 protected String siteUrl; 37 38 39 protected String proxyHost; 40 41 42 protected int proxyPort; 43 44 45 protected String mainPage; 46 47 48 protected String groupPage; 49 50 51 protected String adminName = null; 52 53 54 protected String adminEmail = null; 55 56 57 protected String title = null; 58 59 60 protected String description = null; 61 62 63 protected String outputDir = null; 64 65 66 protected String templateDir = null; 67 68 69 protected String cacheDir = null; 70 71 72 77 public String getId() 78 { 79 return id; 80 } 81 public void setId(String id) 82 { 83 this.id = id; 84 } 85 86 89 public PlanetGroupData getDefaultGroup() 90 { 91 return defaultGroup; 92 } 93 public void setDefaultGroup(PlanetGroupData group) 94 { 95 this.defaultGroup = group; 96 } 97 98 101 public String getGroupPage() 102 { 103 return groupPage; 104 } 105 public void setGroupPage(String groupPage) 106 { 107 this.groupPage = groupPage; 108 } 109 110 113 public String getMainPage() 114 { 115 return mainPage; 116 } 117 public void setMainPage(String mainPage) 118 { 119 this.mainPage = mainPage; 120 } 121 122 125 public String getProxyHost() 126 { 127 return proxyHost; 128 } 129 public void setProxyHost(String proxyHost) 130 { 131 this.proxyHost = proxyHost; 132 } 133 134 137 public int getProxyPort() 138 { 139 return proxyPort; 140 } 141 public void setProxyPort(int proxyPort) 142 { 143 this.proxyPort = proxyPort; 144 } 145 146 149 public String getSiteUrl() 150 { 151 return siteUrl; 152 } 153 public void setSiteUrl(String siteUrl) 154 { 155 this.siteUrl = siteUrl; 156 } 157 158 161 public String getAdminEmail() 162 { 163 return adminEmail; 164 } 165 public void setAdminEmail(String adminEmail) 166 { 167 this.adminEmail = adminEmail; 168 } 169 170 173 public String getAdminName() 174 { 175 return adminName; 176 } 177 public void setAdminName(String adminName) 178 { 179 this.adminName = adminName; 180 } 181 182 185 public String getOutputDir() 186 { 187 return outputDir; 188 } 189 public void setOutputDir(String outputDir) 190 { 191 this.outputDir = outputDir; 192 } 193 194 197 public String getTemplateDir() 198 { 199 return templateDir; 200 } 201 public void setTemplateDir(String templateDir) 202 { 203 this.templateDir = templateDir; 204 } 205 206 209 public String getDescription() 210 { 211 return description; 212 } 213 public void setDescription(String description) 214 { 215 this.description = description; 216 } 217 218 221 public String getTitle() 222 { 223 return title; 224 } 225 public void setTitle(String title) 226 { 227 this.title = title; 228 } 229 230 233 public String getCacheDir() 234 { 235 return cacheDir; 236 } 237 public void setCacheDir(String cacheDir) 238 { 239 this.cacheDir = cacheDir; 240 } 241 242 public void setData(PersistentObject vo) 244 { 245 } 247 } | Popular Tags |