278279280281282283284285286287288
Endpoint endpoint = target.getEndpoint(); if (endpoint != null) { endpoint.init(se); } ManagedLifecycle seq = target.getSequence(); if (seq != null) { seq.init(se); } } }
292293294295296297298299300301302
Endpoint endpoint = target.getEndpoint(); if (endpoint != null && endpoint.isInitialized()) { endpoint.destroy(); } ManagedLifecycle seq = target.getSequence(); if (seq != null) { seq.destroy(); } } }