MCPcopy Index your code
hub / github.com/apache/tomcat / getService

Method getService

java/org/apache/catalina/Container.java:307–307  ·  view source on GitHub ↗

Return the Service to which this container belongs. @param container The container to start from @return the Service, or null if not found

(Container container)

Source from the content-addressed store, hash-verified

305 * @return the Service, or null if not found
306 */
307 static Service getService(Container container) {
308 while (container != null && !(container instanceof Engine)) {
309 container = container.getParent();
310 }

Callers 15

getServerMethod · 0.95
startInternalMethod · 0.95
getGenerateCodeMethod · 0.95
getUseGeneratedCodeMethod · 0.95
startInternalMethod · 0.95
startInternalMethod · 0.95
threadStartMethod · 0.95
startInternalMethod · 0.95

Implementers 1

ContainerBasejava/org/apache/catalina/core/Containe

Calls

no outgoing calls

Tested by

no test coverage detected