(String appBase)
| 241 | |
| 242 | |
| 243 | @Override |
| 244 | public void setAppBase(String appBase) { |
| 245 | if (appBase.trim().isEmpty()) { |
| 246 | log.warn(sm.getString("standardHost.problematicAppBase", getName())); |
| 247 | } |
| 248 | String oldAppBase = this.appBase; |
| 249 | this.appBase = appBase; |
| 250 | support.firePropertyChange("appBase", oldAppBase, this.appBase); |
| 251 | this.appBaseFile = null; |
| 252 | } |
| 253 | |
| 254 | |
| 255 | @Override |