Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
771 blopes 1
@startuml
2
 
3
' Licensed to the Apache Software Foundation (ASF) under one or more
4
' contributor license agreements.  See the NOTICE file distributed with
5
' this work for additional information regarding copyright ownership.
6
' The ASF licenses this file to You under the Apache License, Version 2.0
7
' (the "License"); you may not use this file except in compliance with
8
' the License.  You may obtain a copy of the License at
9
'
10
'     http://www.apache.org/licenses/LICENSE-2.0
11
'
12
' Unless required by applicable law or agreed to in writing, software
13
' distributed under the License is distributed on an "AS IS" BASIS,
14
' WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
' See the License for the specific language governing permissions and
16
' limitations under the License.
17
 
18
hide footbox
19
skinparam style strictuml
20
 
21
activate Catalina
22
 
23
Catalina -> Server ++: init()
24
 
25
Server -> Server: fireLifecycleEvent(\n    BEFORE_INIT_EVENT)
26
 
27
Server -> Server ++: initInternal()
28
 
29
Server -> "Global\nNaming\nResources" as GNR ++: init()
30
GNR -> GNR: fireLifecycleEvent(\n    BEFORE_INIT_EVENT)
31
GNR -> GNR: initInternal()
32
GNR -> GNR: fireLifecycleEvent(\n    AFTER_INIT_EVENT)
33
return
34
 
35
|||
36
Server -> "Service(s)" as Services ++: init()
37
 
38
Services -> Services: fireLifecycleEvent(\n    BEFORE_INIT_EVENT)
39
 
40
Services -> Services ++: initInternal()
41
 
42
Services -> Engine ++: init()
43
Engine -> Engine: fireLifecycleEvent(\n    BEFORE_INIT_EVENT)
44
Engine -> Engine: initInternal()
45
note right
46
The Engine initializes any nested Hosts,
47
Contexts and Wrappers as well as any
48
associated Valves, Loaders, Realms,
49
Clusters and Managers etc.
50
end note
51
Engine -> Engine: fireLifecycleEvent(\n    AFTER_INIT_EVENT)
52
return
53
 
54
|||
55
Services -> "Executor(s)" as Executors ++: init()
56
Executors -> Executors: fireLifecycleEvent(\n    BEFORE_INIT_EVENT)
57
Executors -> Executors: initInternal()
58
Executors -> Executors: fireLifecycleEvent(\n    AFTER_INIT_EVENT)
59
return
60
 
61
|||
62
Services -> "Mapper\nListener" as MapperListener ++: init()
63
MapperListener -> MapperListener: fireLifecycleEvent(\n    BEFORE_INIT_EVENT)
64
MapperListener -> MapperListener: initInternal()
65
MapperListener -> MapperListener: fireLifecycleEvent(\n    AFTER_INIT_EVENT)
66
return
67
 
68
|||
69
Services -> "Connector(s)" as Connectors ++: init()
70
 
71
Connectors -> Connectors: fireLifecycleEvent(\n    BEFORE_INIT_EVENT)
72
 
73
Connectors -> Connectors ++: initInternal()
74
 
75
Connectors -->> CoyoteAdapter **
76
 
77
Connectors -> Protocol ++: setAdapter()
78
return
79
 
80
Connectors -> Protocol ++: init()
81
return
82
 
83
return
84
 
85
|||
86
Connectors -> Connectors: fireLifecycleEvent(\n    AFTER_INIT_EVENT)
87
 
88
return
89
 
90
return
91
 
92
|||
93
Services -> Services: fireLifecycleEvent(\n    AFTER_INIT_EVENT)
94
 
95
return
96
 
97
return
98
 
99
|||
100
Server -> Server: fireLifecycleEvent(\n    AFTER_INIT_EVENT)
101
 
102
return
103
@enduml