274275276277278279280281282283
endpoint.destroy(); } ManagedLifecycle seq = target.getSequence(); if (seq != null) { seq.destroy(); } } } }
168169170171172173174175176177178
public void destroy() { for (Target target : targets) { ManagedLifecycle seq = target.getSequence(); if (seq != null) { seq.destroy(); } Endpoint endpoint = target.getEndpoint(); endpoint.destroy(); } }
295296297298299300301302303304
204205206207208209210211212213214
public void destroy() { for (Target target : targets) { ManagedLifecycle seq = target.getSequence(); if (seq != null) { seq.destroy(); } Endpoint endpoint = target.getEndpoint(); if (endpoint != null) { endpoint.destroy(); }
201202203204205206207208209210211
294295296297298299300301302303