MCPcopy Create free account
hub / github.com/apache/tomcat / setAppBase

Method setAppBase

java/org/apache/catalina/core/StandardHost.java:243–252  ·  view source on GitHub ↗
(String appBase)

Source from the content-addressed store, hash-verified

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

Callers 2

createStandardHostMethod · 0.95
addMethod · 0.95

Calls 5

getNameMethod · 0.95
warnMethod · 0.65
getStringMethod · 0.65
isEmptyMethod · 0.45
trimMethod · 0.45

Tested by

no test coverage detected