Package org.glassfish.contextpropagation

Examples of org.glassfish.contextpropagation.ContextLifecycle


    Entry oldEntry = map.put(key, entry);
    if (oldEntry != null && (oldEntry.getValue() instanceof ContextLifecycle)) {
      ((ContextLifecycle) oldEntry.value).contextChanged(value);
    }
    if (entry.getValue() instanceof ContextLifecycle) {
      ContextLifecycle ctx = (ContextLifecycle) entry.getValue();
      if (addedContexts == null) {
        ctx.contextAdded();
      } else {
        addedContexts.add(ctx);
      }
    }   
    if (logger.isLoggable(Level.DEBUG)) {
View Full Code Here

TOP

Related Classes of org.glassfish.contextpropagation.ContextLifecycle

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.