<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <div class="moz-cite-prefix">Resend.<br>
      <br>
      On 08/01/2013 01:04 PM, Anil Saldhana wrote:<br>
    </div>
    <blockquote cite="mid:51FAA33E.8030109@redhat.com" type="cite">
      <meta content="text/html; charset=ISO-8859-1"
        http-equiv="Content-Type">
      <div class="moz-cite-prefix">Options 3 and 4 are not suitable.&nbsp; I
        wonder how this issue has not manifested in other subsystems
        using JPA?&nbsp; </div>
    </blockquote>
    <br>
    <blockquote cite="mid:51FAA33E.8030109@redhat.com" type="cite">
      <div class="moz-cite-prefix">Should we fix/adapt the PicketLink
        JPA Registry usage of EntityManagerFactory such that we do not
        need hibernate/javassist module dependencies? Guidance
        appreciated.<br>
        <br>
        On 07/26/2013 07:53 AM, Fernando Ribeiro wrote:<br>
      </div>
      <blockquote
cite="mid:CAKcyLkjGQW4LNZp0S6F0sL6yvFiCQGKXb3O13_oZvkuLY=cpHw@mail.gmail.com"
        type="cite">
        <p dir="ltr">Option 4 can be rephrased to "removing the
          JPA-based registries from the code and delivering them instead
          as quickstarts", which is good, though it will impact current
          users/subscribers. Regards.</p>
        <div class="gmail_quote">On Jul 26, 2013 7:51 AM, "Scott Marlow"
          &lt;<a moz-do-not-send="true" href="mailto:smarlow@redhat.com">smarlow@redhat.com</a>&gt;

          wrote:<br type="attribution">
          <blockquote class="gmail_quote" style="margin:0 0 0
            .8ex;border-left:1px #ccc solid;padding-left:1ex"> Turns out
            that using the org.hibernate.annotations.Proxy annotation is
            currently the only workaround:<br>
            <br>
            @Entity @Proxy(lazy=false) public class SecurityToken<br>
            <br>
            However, that requires changing the PicketLink module to add
            a dependency on the Hibernate module.<br>
            <br>
            Options for addressing this issue are:<br>
            <br>
            1. &nbsp;Someone contributes a patch to Hibernate to change
            bytecode enhancing to not require Hibernate/Javassist on the
            classpath. &nbsp;Not sure when this might happen or if it will
            happen.<br>
            <br>
            2. &nbsp;Add the javassist jar to the WildFly org.hibernate
            static module so that only the Hibernate module needs to be
            on the PicketLink module classpath (which we would add to
            the PicketLink module).<br>
            <br>
            3. &nbsp;Change PicketLink to directly depend on Hibernate and
            make code changes to avoid lazy loading. &nbsp;The PicketLink
            module is changed to depend on Hibernate.<br>
            <br>
            4. &nbsp;Change PicketLink to not directly use JPA, but instead
            delegate to the application for access to a persistence
            store (let the application use EE JPA container managed
            access if it desires).<br>
            <br>
            Scott<br>
            <br>
            On 07/25/2013 11:24 AM, Scott Marlow wrote:<br>
            <blockquote class="gmail_quote" style="margin:0 0 0
              .8ex;border-left:1px #ccc solid;padding-left:1ex">
              Fernando, could you try updating the SecurityToken entity
              from:<br>
              <br>
              @Lob<br>
              &nbsp; &nbsp; &nbsp;private byte[] token;<br>
              <br>
              To:<br>
              <br>
              @Lob &nbsp;@Basic(fetch=LAZY)<br>
              &nbsp; &nbsp; private byte[] token;<br>
              <br>
              And see if that helps, just to see if we can avoid adding
              the<br>
              hibernate/javassist dependencies if we want.<br>
              <br>
              <br>
              <br>
              On 07/25/2013 11:16 AM, Scott Marlow wrote:<br>
              <blockquote class="gmail_quote" style="margin:0 0 0
                .8ex;border-left:1px #ccc solid;padding-left:1ex"> &nbsp;
                From private email, I now have the server.log that
                contains the full<br>
                call stacks. &nbsp;<a moz-do-not-send="true"
                  href="http://pastebin.com/dpUG5NFA" target="_blank">http://pastebin.com/dpUG5NFA</a>
                is the first one.<br>
                <br>
                It looks like in AbstractEntityTuplizer ctor, we are
                using Javassist to<br>
                generate a lazy proxy:<br>
                <br>
                if ( entityMetamodel.isLazy() ) {<br>
                &nbsp; &nbsp;proxyFactory = buildProxyFactory( mappingInfo,
                idGetter, idSetter );<br>
                &nbsp; &nbsp;if (proxyFactory == null) {<br>
                &nbsp; &nbsp; entityMetamodel.setLazy( false );<br>
                &nbsp; &nbsp;}<br>
                }<br>
                else {<br>
                &nbsp; &nbsp;proxyFactory = null;<br>
                }<br>
                <br>
                I must be missing something as I don't see what is being
                "lazy" loaded<br>
                for
                org.picketlink.identity.federation.core.sts.registry.SecurityToken.<br>
                <br>
                We either need to avoid lazy loading or include the
                Hibernate/Javassist<br>
                dependencies in PicketLink.<br>
                <br>
                On 07/24/2013 10:26 PM, Scott Marlow wrote:<br>
                <blockquote class="gmail_quote" style="margin:0 0 0
                  .8ex;border-left:1px #ccc solid;padding-left:1ex"> On
                  07/24/2013 09:56 PM, Fernando Ribeiro wrote:<br>
                  <blockquote class="gmail_quote" style="margin:0 0 0
                    .8ex;border-left:1px #ccc solid;padding-left:1ex">
                    Scott,<br>
                    <br>
                    Here are the stack traces.<br>
                    <br>
                    ** Original Descriptor **<br>
                    <br>
                  </blockquote>
                  <br>
                  This first one should be resolved by PicketLink
                  (org.picketlink module)<br>
                  adding a dependency on the javax.persistence.api
                  module.<br>
                  <br>
                  For the other two, I need more context.<br>
                  <br>
                  <blockquote class="gmail_quote" style="margin:0 0 0
                    .8ex;border-left:1px #ccc solid;padding-left:1ex">
                    [Server:server-one] Caused by:
                    java.lang.ClassNotFoundException:<br>
                    javax.persistence.Persistence from [Module
                    "org.picketlink:main" from<br>
                    local module loader @509f5011 (roots:
                    /opt/jboss-eap-6.0/modules)]<br>
                    [Server:server-one] &nbsp; &nbsp; at<br>
org.jboss.modules.ModuleClassLoader.findClass(ModuleClassLoader.java:190)<br>
                    <br>
                    [Server:server-one] &nbsp; &nbsp; at<br>
org.jboss.modules.ConcurrentClassLoader.performLoadClassUnchecked(ConcurrentClassLoader.java:468)<br>
                    <br>
                    [Server:server-one] &nbsp; &nbsp; at<br>
org.jboss.modules.ConcurrentClassLoader.performLoadClassChecked(ConcurrentClassLoader.java:456)<br>
                    <br>
                    [Server:server-one] &nbsp; &nbsp; at<br>
org.jboss.modules.ConcurrentClassLoader.performLoadClassChecked(ConcurrentClassLoader.java:423)<br>
                    <br>
                    [Server:server-one] &nbsp; &nbsp; at<br>
org.jboss.modules.ConcurrentClassLoader.performLoadClass(ConcurrentClassLoader.java:398)<br>
                    <br>
                    [Server:server-one] &nbsp; &nbsp; at<br>
org.jboss.modules.ConcurrentClassLoader.loadClass(ConcurrentClassLoader.java:120)<br>
                    <br>
                    [Server:server-one] &nbsp; &nbsp; ... 24 more<br>
                    <br>
                    ** Descriptor w/ the JPA API **<br>
                    <br>
                    [Server:server-one] Caused by:
                    java.lang.ClassNotFoundException:<br>
                    org.hibernate.proxy.HibernateProxy from [Module
                    "org.picketlink:main"<br>
                    from local module loader @3b835282 (roots:
                    /opt/jboss-eap-6.0/modules)]<br>
                    [Server:server-one] &nbsp; &nbsp; at<br>
org.jboss.modules.ModuleClassLoader.findClass(ModuleClassLoader.java:190)<br>
                    <br>
                    [Server:server-one] &nbsp; &nbsp; at<br>
org.jboss.modules.ConcurrentClassLoader.performLoadClassUnchecked(ConcurrentClassLoader.java:468)<br>
                    <br>
                    [Server:server-one] &nbsp; &nbsp; at<br>
org.jboss.modules.ConcurrentClassLoader.performLoadClassChecked(ConcurrentClassLoader.java:456)<br>
                    <br>
                    [Server:server-one] &nbsp; &nbsp; at<br>
org.jboss.modules.ConcurrentClassLoader.performLoadClassChecked(ConcurrentClassLoader.java:423)<br>
                    <br>
                    [Server:server-one] &nbsp; &nbsp; at<br>
org.jboss.modules.ConcurrentClassLoader.performLoadClass(ConcurrentClassLoader.java:398)<br>
                    <br>
                    [Server:server-one] &nbsp; &nbsp; at<br>
org.jboss.modules.ConcurrentClassLoader.loadClass(ConcurrentClassLoader.java:120)<br>
                    <br>
                    [Server:server-one] &nbsp; &nbsp; ... 64 more<br>
                    <br>
                    ** Descriptor w/ Hibernate **<br>
                    <br>
                    [Server:server-one] Caused by:
                    java.lang.ClassNotFoundException:<br>
                    javassist.util.proxy.ProxyObject from [Module
                    "org.picketlink:main" from<br>
                    local module loader @67d225a7 (roots:
                    /opt/jboss-eap-6.0/modules)]<br>
                    [Server:server-one] &nbsp; &nbsp; at<br>
org.jboss.modules.ModuleClassLoader.findClass(ModuleClassLoader.java:190)<br>
                    <br>
                    [Server:server-one] &nbsp; &nbsp; at<br>
org.jboss.modules.ConcurrentClassLoader.performLoadClassUnchecked(ConcurrentClassLoader.java:468)<br>
                    <br>
                    [Server:server-one] &nbsp; &nbsp; at<br>
org.jboss.modules.ConcurrentClassLoader.performLoadClassChecked(ConcurrentClassLoader.java:456)<br>
                    <br>
                    [Server:server-one] &nbsp; &nbsp; at<br>
org.jboss.modules.ConcurrentClassLoader.performLoadClassChecked(ConcurrentClassLoader.java:423)<br>
                    <br>
                    [Server:server-one] &nbsp; &nbsp; at<br>
org.jboss.modules.ConcurrentClassLoader.performLoadClass(ConcurrentClassLoader.java:398)<br>
                    <br>
                    [Server:server-one] &nbsp; &nbsp; at<br>
org.jboss.modules.ConcurrentClassLoader.loadClass(ConcurrentClassLoader.java:120)<br>
                    <br>
                    [Server:server-one] &nbsp; &nbsp; ... 64 more<br>
                    <br>
                    Regards,<br>
                    <br>
                    On Wed, Jul 24, 2013 at 10:22 PM, Scott Marlow &lt;<a
                      moz-do-not-send="true"
                      href="mailto:smarlow@redhat.com" target="_blank">smarlow@redhat.com</a><br>
                    &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:smarlow@redhat.com" target="_blank">smarlow@redhat.com</a>&gt;&gt;

                    wrote:<br>
                    <br>
                    &nbsp; &nbsp; &nbsp; On 07/24/2013 06:23 PM, Fernando Ribeiro
                    wrote:<br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; I guess that is the AbstractJPARegistry
                    class referred to in my<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; previous<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; message, right?<br>
                    <br>
                    <br>
                    &nbsp; &nbsp; &nbsp; Thanks, answering my current questions in the
                    past is awesome! &nbsp;I<br>
                    &nbsp; &nbsp; &nbsp; don't see anything references that should need
                    Hibernate or<br>
                    &nbsp; &nbsp; &nbsp; Javassist in AbstractJPARegistry.<br>
                    <br>
                    &nbsp; &nbsp; &nbsp; Could you try removing the PicketLink module
                    dependency on the<br>
                    &nbsp; &nbsp; &nbsp; Hibernate and Javassist modules and show me
                    the full exception call<br>
                    &nbsp; &nbsp; &nbsp; stack that you get as a result of doing that?<br>
                    <br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; On Jul 24, 2013 6:42 PM, "Scott Marlow"
                    &lt;<a moz-do-not-send="true"
                      href="mailto:smarlow@redhat.com" target="_blank">smarlow@redhat.com</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:smarlow@redhat.com" target="_blank">smarlow@redhat.com</a>&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:smarlow@redhat.com" target="_blank">smarlow@redhat.com</a>
                    &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:smarlow@redhat.com" target="_blank">smarlow@redhat.com</a>&gt;&gt;&gt;

                    wrote:<br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Can you give me a link to the
                    PicketLink code that does<br>
                    the<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;bootstrap? I'd like to see why you
                    need to reference<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Hibernate directly.<br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;As long as the JPA subsystem
                    JPAExtension.initialize() has<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; run, the<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;default persistence provider
                    (Hibernate) will be<br>
                    available to<br>
                    <br>
                    <br>
javax.persistence.Persistence.____createEntityManagerFactory()__.<br>
                    <br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;On 07/24/2013 03:39 PM, Fernando
                    Ribeiro wrote:<br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Scott,<br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;PicketLink doesn't use any
                    Hibernate extensions, and<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; users are<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;expected<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;to provide a persistence unit
                    called "picketlink-sts"<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; in their<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;applications.<br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Regarding the bootstraping of the
                    persistence unit,<br>
                    you<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; guessed<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;right [1].<br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Regards,<br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;--<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Fernando<br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;[1]<br>
                    <br>
                    <a moz-do-not-send="true"
href="https://github.com/picketlink/____picketlink/blob/____277c5b8ec9b6eee5dcd36422763db6____f02479f081/modules/__federation/__src/main/java/__org/picketlink/__identity/__federation/core/sts/____registry/AbstractJPARegistry.____java"
                      target="_blank">https://github.com/picketlink/____picketlink/blob/____277c5b8ec9b6eee5dcd36422763db6____f02479f081/modules/__federation/__src/main/java/__org/picketlink/__identity/__federation/core/sts/____registry/AbstractJPARegistry.____java</a><br>
                    <br>
                    <br>
                    &lt;<a moz-do-not-send="true"
href="https://github.com/picketlink/__picketlink/blob/__277c5b8ec9b6eee5dcd36422763db6__f02479f081/modules/federation/__src/main/java/org/picketlink/__identity/federation/core/sts/__registry/AbstractJPARegistry.__java"
                      target="_blank">https://github.com/picketlink/__picketlink/blob/__277c5b8ec9b6eee5dcd36422763db6__f02479f081/modules/federation/__src/main/java/org/picketlink/__identity/federation/core/sts/__registry/AbstractJPARegistry.__java</a>&gt;<br>
                    <br>
                    <br>
                    <br>
                    <br>
                    &lt;<a moz-do-not-send="true"
href="https://github.com/__picketlink/picketlink/blob/__277c5b8ec9b6eee5dcd36422763db6__f02479f081/modules/federation/__src/main/java/org/picketlink/__identity/federation/core/sts/__registry/AbstractJPARegistry.__java"
                      target="_blank">https://github.com/__picketlink/picketlink/blob/__277c5b8ec9b6eee5dcd36422763db6__f02479f081/modules/federation/__src/main/java/org/picketlink/__identity/federation/core/sts/__registry/AbstractJPARegistry.__java</a><br>
                    <br>
                    <br>
                    &lt;<a moz-do-not-send="true"
href="https://github.com/picketlink/picketlink/blob/277c5b8ec9b6eee5dcd36422763db6f02479f081/modules/federation/src/main/java/org/picketlink/identity/federation/core/sts/registry/AbstractJPARegistry.java"
                      target="_blank">https://github.com/picketlink/picketlink/blob/277c5b8ec9b6eee5dcd36422763db6f02479f081/modules/federation/src/main/java/org/picketlink/identity/federation/core/sts/registry/AbstractJPARegistry.java</a>&gt;&gt;<br>
                    <br>
                    <br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;r<br>
                    <br>
                    <br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;On Wed, Jul 24, 2013 at 4:17 PM,
                    Scott Marlow<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;<a moz-do-not-send="true"
                      href="mailto:smarlow@redhat.com" target="_blank">smarlow@redhat.com</a>
                    &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:smarlow@redhat.com" target="_blank">smarlow@redhat.com</a>&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:smarlow@redhat.com" target="_blank">smarlow@redhat.com</a>
                    &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:smarlow@redhat.com" target="_blank">smarlow@redhat.com</a>&gt;&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a
                      moz-do-not-send="true"
                      href="mailto:smarlow@redhat.com" target="_blank">smarlow@redhat.com</a>
                    &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:smarlow@redhat.com" target="_blank">smarlow@redhat.com</a>&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:smarlow@redhat.com" target="_blank">smarlow@redhat.com</a>
                    &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:smarlow@redhat.com" target="_blank">smarlow@redhat.com</a>&gt;&gt;&gt;&gt;<br>
                    wrote:<br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; How does PickLink bootstrap
                    the persistence unit<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; mentioned<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;in [5] +<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [6]? &nbsp;I assume not via EE
                    JPA container managed<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; deployment.<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;I'm<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; guessing via direct calls to<br>
                    <br>
                    <br>
                    <br>
javax.persistence.Persistence.________createEntityManagerFactory("______picketlink-sts").<br>
                    <br>
                    <br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Does PicketLink use any
                    Hibernate extensions? &nbsp;Or<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; just the<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;JPA api?<br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Do we have a more complete
                    example than<br>
                    [5]+[6], that<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;include how<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; users are expected to supply
                    datasource/database<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; configuration.<br>
                    <br>
                    <br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; On 07/24/2013 02:34 PM,
                    Fernando Ribeiro wrote:<br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; The issue is the
                    PicketLink module<br>
                    depending on a<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;specific JPA<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; implementation, which is
                    not really<br>
                    desirable, and<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;currently looks<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; unavoidable. Regards.<br>
                    <br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; On Wed, Jul 24, 2013 at
                    11:55 AM, Jaikiran<br>
                    Pai<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;<a moz-do-not-send="true"
                      href="mailto:jpai@redhat.com" target="_blank">jpai@redhat.com</a>
                    &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:jpai@redhat.com" target="_blank">jpai@redhat.com</a>&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:jpai@redhat.com" target="_blank">jpai@redhat.com</a>
                    &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:jpai@redhat.com" target="_blank">jpai@redhat.com</a>&gt;&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a
                      moz-do-not-send="true"
                      href="mailto:jpai@redhat.com" target="_blank">jpai@redhat.com</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:jpai@redhat.com" target="_blank">jpai@redhat.com</a>&gt;

                    &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:jpai@redhat.com" target="_blank">jpai@redhat.com</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:jpai@redhat.com" target="_blank">jpai@redhat.com</a>&gt;&gt;&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a
                      moz-do-not-send="true"
                      href="mailto:jpai@redhat.com" target="_blank">jpai@redhat.com</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:jpai@redhat.com" target="_blank">jpai@redhat.com</a>&gt;

                    &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:jpai@redhat.com" target="_blank">jpai@redhat.com</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:jpai@redhat.com" target="_blank">jpai@redhat.com</a>&gt;&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a
                      moz-do-not-send="true"
                      href="mailto:jpai@redhat.com" target="_blank">jpai@redhat.com</a>
                    &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:jpai@redhat.com" target="_blank">jpai@redhat.com</a>&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:jpai@redhat.com" target="_blank">jpai@redhat.com</a>
                    &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:jpai@redhat.com" target="_blank">jpai@redhat.com</a>&gt;&gt;&gt;&gt;&gt;

                    wrote:<br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Fernando actually
                    proposed a fix<br>
                    which we<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; wanted to be<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; discussed here in<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;the mailing list
                    since the fix didn't<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; look right<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;for a core<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; component<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;like PicketLink.
                    The PR (which we<br>
                    closed)<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; is here<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a moz-do-not-send="true"
                      href="https://github.com/wildfly/______wildfly/issues/4786"
                      target="_blank">https://github.com/wildfly/______wildfly/issues/4786</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://github.com/wildfly/____wildfly/issues/4786"
                      target="_blank">https://github.com/wildfly/____wildfly/issues/4786</a>&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;<a moz-do-not-send="true"
                      href="https://github.com/wildfly/____wildfly/issues/4786"
                      target="_blank">https://github.com/wildfly/____wildfly/issues/4786</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://github.com/wildfly/__wildfly/issues/4786"
                      target="_blank">https://github.com/wildfly/__wildfly/issues/4786</a>&gt;&gt;<br>
                    <br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://github.com/wildfly/____wildfly/issues/4786"
                      target="_blank">https://github.com/wildfly/____wildfly/issues/4786</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://github.com/wildfly/__wildfly/issues/4786"
                      target="_blank">https://github.com/wildfly/__wildfly/issues/4786</a>&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;<a moz-do-not-send="true"
                      href="https://github.com/wildfly/__wildfly/issues/4786"
                      target="_blank">https://github.com/wildfly/__wildfly/issues/4786</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://github.com/wildfly/wildfly/issues/4786"
                      target="_blank">https://github.com/wildfly/wildfly/issues/4786</a>&gt;&gt;&gt;<br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;-Jaikiran<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;On Wednesday 24
                    July 2013 08:22 PM,<br>
                    Darran<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Lofthouse wrote:<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt; On 24/07/13
                    15:46, Fernando<br>
                    Ribeiro wrote:<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;&gt; All,<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;&gt; There is
                    an issue in PicketLink<br>
                    [1] that<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;requires the<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; module<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;descriptor<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;&gt; in
                    WildFly to depend on<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "org.hibernate" and<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "org.javassist" to<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;support<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;&gt; two
                    components called<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "JPABasedTokenRegistry"<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;[2] and<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;&gt;
                    "JPABasedRevocationRegistry" [3].<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;&gt; How would
                    you suggest this issue to<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; be fixed?<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt; If you
                    already have the proposed<br>
                    fix I<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; would<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;suggest<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; sending over<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;a pull<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt; request.<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a moz-do-not-send="true"
                      href="https://community.jboss.org/______wiki/HackingOnWildFly"
                      target="_blank">https://community.jboss.org/______wiki/HackingOnWildFly</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://community.jboss.org/____wiki/HackingOnWildFly"
                      target="_blank">https://community.jboss.org/____wiki/HackingOnWildFly</a>&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;<a moz-do-not-send="true"
                      href="https://community.jboss.org/____wiki/HackingOnWildFly"
                      target="_blank">https://community.jboss.org/____wiki/HackingOnWildFly</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://community.jboss.org/__wiki/HackingOnWildFly"
                      target="_blank">https://community.jboss.org/__wiki/HackingOnWildFly</a>&gt;&gt;<br>
                    <br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://community.jboss.org/____wiki/HackingOnWildFly"
                      target="_blank">https://community.jboss.org/____wiki/HackingOnWildFly</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://community.jboss.org/__wiki/HackingOnWildFly"
                      target="_blank">https://community.jboss.org/__wiki/HackingOnWildFly</a>&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;<a moz-do-not-send="true"
                      href="https://community.jboss.org/__wiki/HackingOnWildFly"
                      target="_blank">https://community.jboss.org/__wiki/HackingOnWildFly</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://community.jboss.org/wiki/HackingOnWildFly"
                      target="_blank">https://community.jboss.org/wiki/HackingOnWildFly</a>&gt;&gt;&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt; If you are an
                    EAP customer I would<br>
                    suggest<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;opening a<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; support case so<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt; that the
                    support team can request the<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; fix is<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;included in<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; EAP.<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;&gt; The issue
                    has also been logged in<br>
                    WildFly<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;already [4].<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; There are<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;samples<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;&gt; of the
                    JPA registries available<br>
                    in my<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; blog [5][6].<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;&gt; Regards,<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;&gt; --<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;&gt; Fernando<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;&gt; [1]<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a moz-do-not-send="true"
                      href="https://issues.jboss.org/______browse/PLINK2-97"
                      target="_blank">https://issues.jboss.org/______browse/PLINK2-97</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://issues.jboss.org/____browse/PLINK2-97"
                      target="_blank">https://issues.jboss.org/____browse/PLINK2-97</a>&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;<a moz-do-not-send="true"
                      href="https://issues.jboss.org/____browse/PLINK2-97"
                      target="_blank">https://issues.jboss.org/____browse/PLINK2-97</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://issues.jboss.org/__browse/PLINK2-97"
                      target="_blank">https://issues.jboss.org/__browse/PLINK2-97</a>&gt;&gt;<br>
                    <br>
                    <br>
                    &lt;<a moz-do-not-send="true"
                      href="https://issues.jboss.org/____browse/PLINK2-97"
                      target="_blank">https://issues.jboss.org/____browse/PLINK2-97</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://issues.jboss.org/__browse/PLINK2-97"
                      target="_blank">https://issues.jboss.org/__browse/PLINK2-97</a>&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;<a moz-do-not-send="true"
                      href="https://issues.jboss.org/__browse/PLINK2-97"
                      target="_blank">https://issues.jboss.org/__browse/PLINK2-97</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://issues.jboss.org/browse/PLINK2-97"
                      target="_blank">https://issues.jboss.org/browse/PLINK2-97</a>&gt;&gt;&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;&gt; [2]<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;&gt;<br>
                    <br>
                    <a moz-do-not-send="true"
href="https://access.redhat.com/______site/documentation/en-US/______JBoss_Enterprise_Application_______Platform/6.1/html/API_______Documentation/files/javadoc/______org/picketlink/identity/______federation/core/sts/registry/______JPABasedTokenRegistry.html"
                      target="_blank">https://access.redhat.com/______site/documentation/en-US/______JBoss_Enterprise_Application_______Platform/6.1/html/API_______Documentation/files/javadoc/______org/picketlink/identity/______federation/core/sts/registry/______JPABasedTokenRegistry.html</a><br>
                    <br>
                    <br>
                    &lt;<a moz-do-not-send="true"
href="https://access.redhat.com/____site/documentation/en-US/____JBoss_Enterprise_Application_____Platform/6.1/html/API_____Documentation/files/javadoc/____org/picketlink/identity/____federation/core/sts/registry/____JPABasedTokenRegistry.html"
                      target="_blank">https://access.redhat.com/____site/documentation/en-US/____JBoss_Enterprise_Application_____Platform/6.1/html/API_____Documentation/files/javadoc/____org/picketlink/identity/____federation/core/sts/registry/____JPABasedTokenRegistry.html</a>&gt;<br>
                    <br>
                    <br>
                    <br>
                    &lt;<a moz-do-not-send="true"
href="https://access.redhat.com/____site/documentation/en-US/____JBoss_Enterprise_Application_____Platform/6.1/html/API_____Documentation/files/javadoc/____org/picketlink/identity/____federation/core/sts/registry/____JPABasedTokenRegistry.html"
                      target="_blank">https://access.redhat.com/____site/documentation/en-US/____JBoss_Enterprise_Application_____Platform/6.1/html/API_____Documentation/files/javadoc/____org/picketlink/identity/____federation/core/sts/registry/____JPABasedTokenRegistry.html</a><br>
                    <br>
                    <br>
                    &lt;<a moz-do-not-send="true"
href="https://access.redhat.com/__site/documentation/en-US/__JBoss_Enterprise_Application___Platform/6.1/html/API___Documentation/files/javadoc/__org/picketlink/identity/__federation/core/sts/registry/__JPABasedTokenRegistry.html"
                      target="_blank">https://access.redhat.com/__site/documentation/en-US/__JBoss_Enterprise_Application___Platform/6.1/html/API___Documentation/files/javadoc/__org/picketlink/identity/__federation/core/sts/registry/__JPABasedTokenRegistry.html</a>&gt;&gt;<br>
                    <br>
                    <br>
                    <br>
                    <br>
                    <br>
                    &lt;<a moz-do-not-send="true"
href="https://access.redhat.com/____site/documentation/en-US/____JBoss_Enterprise_Application_____Platform/6.1/html/API_____Documentation/files/javadoc/____org/picketlink/identity/____federation/core/sts/registry/____JPABasedTokenRegistry.html"
                      target="_blank">https://access.redhat.com/____site/documentation/en-US/____JBoss_Enterprise_Application_____Platform/6.1/html/API_____Documentation/files/javadoc/____org/picketlink/identity/____federation/core/sts/registry/____JPABasedTokenRegistry.html</a><br>
                    <br>
                    <br>
                    &lt;<a moz-do-not-send="true"
href="https://access.redhat.com/__site/documentation/en-US/__JBoss_Enterprise_Application___Platform/6.1/html/API___Documentation/files/javadoc/__org/picketlink/identity/__federation/core/sts/registry/__JPABasedTokenRegistry.html"
                      target="_blank">https://access.redhat.com/__site/documentation/en-US/__JBoss_Enterprise_Application___Platform/6.1/html/API___Documentation/files/javadoc/__org/picketlink/identity/__federation/core/sts/registry/__JPABasedTokenRegistry.html</a>&gt;<br>
                    <br>
                    <br>
                    <br>
                    &lt;<a moz-do-not-send="true"
href="https://access.redhat.com/__site/documentation/en-US/__JBoss_Enterprise_Application___Platform/6.1/html/API___Documentation/files/javadoc/__org/picketlink/identity/__federation/core/sts/registry/__JPABasedTokenRegistry.html"
                      target="_blank">https://access.redhat.com/__site/documentation/en-US/__JBoss_Enterprise_Application___Platform/6.1/html/API___Documentation/files/javadoc/__org/picketlink/identity/__federation/core/sts/registry/__JPABasedTokenRegistry.html</a><br>
                    <br>
                    <br>
                    &lt;<a moz-do-not-send="true"
href="https://access.redhat.com/site/documentation/en-US/JBoss_Enterprise_Application_Platform/6.1/html/API_Documentation/files/javadoc/org/picketlink/identity/federation/core/sts/registry/JPABasedTokenRegistry.html"
                      target="_blank">https://access.redhat.com/site/documentation/en-US/JBoss_Enterprise_Application_Platform/6.1/html/API_Documentation/files/javadoc/org/picketlink/identity/federation/core/sts/registry/JPABasedTokenRegistry.html</a>&gt;&gt;&gt;<br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;&gt; [3]<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;&gt;<br>
                    <br>
                    <a moz-do-not-send="true"
href="https://access.redhat.com/______site/documentation/en-US/______JBoss_Enterprise_Application_______Platform/6.1/html/API_______Documentation/files/javadoc/______org/picketlink/identity/______federation/core/sts/registry/______JPABasedRevocationRegistry.______html"
                      target="_blank">https://access.redhat.com/______site/documentation/en-US/______JBoss_Enterprise_Application_______Platform/6.1/html/API_______Documentation/files/javadoc/______org/picketlink/identity/______federation/core/sts/registry/______JPABasedRevocationRegistry.______html</a><br>
                    <br>
                    <br>
                    &lt;<a moz-do-not-send="true"
href="https://access.redhat.com/____site/documentation/en-US/____JBoss_Enterprise_Application_____Platform/6.1/html/API_____Documentation/files/javadoc/____org/picketlink/identity/____federation/core/sts/registry/____JPABasedRevocationRegistry.____html"
                      target="_blank">https://access.redhat.com/____site/documentation/en-US/____JBoss_Enterprise_Application_____Platform/6.1/html/API_____Documentation/files/javadoc/____org/picketlink/identity/____federation/core/sts/registry/____JPABasedRevocationRegistry.____html</a>&gt;<br>
                    <br>
                    <br>
                    <br>
                    &lt;<a moz-do-not-send="true"
href="https://access.redhat.com/____site/documentation/en-US/____JBoss_Enterprise_Application_____Platform/6.1/html/API_____Documentation/files/javadoc/____org/picketlink/identity/____federation/core/sts/registry/____JPABasedRevocationRegistry.____html"
                      target="_blank">https://access.redhat.com/____site/documentation/en-US/____JBoss_Enterprise_Application_____Platform/6.1/html/API_____Documentation/files/javadoc/____org/picketlink/identity/____federation/core/sts/registry/____JPABasedRevocationRegistry.____html</a><br>
                    <br>
                    <br>
                    &lt;<a moz-do-not-send="true"
href="https://access.redhat.com/__site/documentation/en-US/__JBoss_Enterprise_Application___Platform/6.1/html/API___Documentation/files/javadoc/__org/picketlink/identity/__federation/core/sts/registry/__JPABasedRevocationRegistry.__html"
                      target="_blank">https://access.redhat.com/__site/documentation/en-US/__JBoss_Enterprise_Application___Platform/6.1/html/API___Documentation/files/javadoc/__org/picketlink/identity/__federation/core/sts/registry/__JPABasedRevocationRegistry.__html</a>&gt;&gt;<br>
                    <br>
                    <br>
                    <br>
                    <br>
                    <br>
                    &lt;<a moz-do-not-send="true"
href="https://access.redhat.com/____site/documentation/en-US/____JBoss_Enterprise_Application_____Platform/6.1/html/API_____Documentation/files/javadoc/____org/picketlink/identity/____federation/core/sts/registry/____JPABasedRevocationRegistry.____html"
                      target="_blank">https://access.redhat.com/____site/documentation/en-US/____JBoss_Enterprise_Application_____Platform/6.1/html/API_____Documentation/files/javadoc/____org/picketlink/identity/____federation/core/sts/registry/____JPABasedRevocationRegistry.____html</a><br>
                    <br>
                    <br>
                    &lt;<a moz-do-not-send="true"
href="https://access.redhat.com/__site/documentation/en-US/__JBoss_Enterprise_Application___Platform/6.1/html/API___Documentation/files/javadoc/__org/picketlink/identity/__federation/core/sts/registry/__JPABasedRevocationRegistry.__html"
                      target="_blank">https://access.redhat.com/__site/documentation/en-US/__JBoss_Enterprise_Application___Platform/6.1/html/API___Documentation/files/javadoc/__org/picketlink/identity/__federation/core/sts/registry/__JPABasedRevocationRegistry.__html</a>&gt;<br>
                    <br>
                    <br>
                    <br>
                    &lt;<a moz-do-not-send="true"
href="https://access.redhat.com/__site/documentation/en-US/__JBoss_Enterprise_Application___Platform/6.1/html/API___Documentation/files/javadoc/__org/picketlink/identity/__federation/core/sts/registry/__JPABasedRevocationRegistry.__html"
                      target="_blank">https://access.redhat.com/__site/documentation/en-US/__JBoss_Enterprise_Application___Platform/6.1/html/API___Documentation/files/javadoc/__org/picketlink/identity/__federation/core/sts/registry/__JPABasedRevocationRegistry.__html</a><br>
                    <br>
                    <br>
                    &lt;<a moz-do-not-send="true"
href="https://access.redhat.com/site/documentation/en-US/JBoss_Enterprise_Application_Platform/6.1/html/API_Documentation/files/javadoc/org/picketlink/identity/federation/core/sts/registry/JPABasedRevocationRegistry.html"
                      target="_blank">https://access.redhat.com/site/documentation/en-US/JBoss_Enterprise_Application_Platform/6.1/html/API_Documentation/files/javadoc/org/picketlink/identity/federation/core/sts/registry/JPABasedRevocationRegistry.html</a>&gt;&gt;&gt;<br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;&gt; [4]<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a moz-do-not-send="true"
                      href="https://issues.jboss.org/______browse/WFLY-1691"
                      target="_blank">https://issues.jboss.org/______browse/WFLY-1691</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://issues.jboss.org/____browse/WFLY-1691"
                      target="_blank">https://issues.jboss.org/____browse/WFLY-1691</a>&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;<a moz-do-not-send="true"
                      href="https://issues.jboss.org/____browse/WFLY-1691"
                      target="_blank">https://issues.jboss.org/____browse/WFLY-1691</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://issues.jboss.org/__browse/WFLY-1691"
                      target="_blank">https://issues.jboss.org/__browse/WFLY-1691</a>&gt;&gt;<br>
                    <br>
                    <br>
                    &lt;<a moz-do-not-send="true"
                      href="https://issues.jboss.org/____browse/WFLY-1691"
                      target="_blank">https://issues.jboss.org/____browse/WFLY-1691</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://issues.jboss.org/__browse/WFLY-1691"
                      target="_blank">https://issues.jboss.org/__browse/WFLY-1691</a>&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;<a moz-do-not-send="true"
                      href="https://issues.jboss.org/__browse/WFLY-1691"
                      target="_blank">https://issues.jboss.org/__browse/WFLY-1691</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://issues.jboss.org/browse/WFLY-1691"
                      target="_blank">https://issues.jboss.org/browse/WFLY-1691</a>&gt;&gt;&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;&gt; [5]<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;&gt;<br>
                    <br>
                    <a moz-do-not-send="true"
                      href="http://simplesassim.wordpress."
                      target="_blank">http://simplesassim.wordpress.</a>______com/2013/07/12/how-to-use-____the-__jpa-based-token-____registry-in-__picketlink/<br>
                    <br>
                    <br>
                    <br>
                    <br>
                    &lt;<a moz-do-not-send="true"
                      href="http://simplesassim." target="_blank">http://simplesassim.</a>__<a
                      moz-do-not-send="true"
href="http://wordpre__ss.com/2013/07/12/how-__to-__use-the-jpa-based-token-____registry-in-picketlink/"
                      target="_blank">wordpre__ss.com/2013/07/12/how-__to-__use-the-jpa-based-token-____registry-in-picketlink/</a><br>
                    <br>
                    <br>
                    &lt;<a moz-do-not-send="true"
href="http://wordpress.com/2013/07/12/how-__to-use-the-jpa-based-token-__registry-in-picketlink/"
                      target="_blank">http://wordpress.com/2013/07/12/how-__to-use-the-jpa-based-token-__registry-in-picketlink/</a>&gt;<br>
                    <br>
                    <br>
                    <br>
                    &lt;<a moz-do-not-send="true"
                      href="http://simplesassim." target="_blank">http://simplesassim.</a>__<a
                      moz-do-not-send="true"
href="http://wordpress.com/2013/07/12/how-__to-use-the-jpa-based-token-__registry-in-picketlink/"
                      target="_blank">wordpress.com/2013/07/12/how-__to-use-the-jpa-based-token-__registry-in-picketlink/</a><br>
                    <br>
                    <br>
                    &lt;<a moz-do-not-send="true"
href="http://simplesassim.wordpress.com/2013/07/12/how-to-use-the-jpa-based-token-registry-in-picketlink/"
                      target="_blank">http://simplesassim.wordpress.com/2013/07/12/how-to-use-the-jpa-based-token-registry-in-picketlink/</a>&gt;&gt;&gt;<br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;&gt; [6]<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;&gt;<br>
                    <br>
                    <a moz-do-not-send="true"
                      href="http://simplesassim.wordpress."
                      target="_blank">http://simplesassim.wordpress.</a>______com/2013/07/21/how-to-use-____the-__jpa-based-revocation-____registry-__in-picketlink/<br>
                    <br>
                    <br>
                    <br>
                    <br>
                    &lt;<a moz-do-not-send="true"
                      href="http://simplesassim." target="_blank">http://simplesassim.</a>__<a
                      moz-do-not-send="true"
href="http://wordpre__ss.com/2013/07/21/how-__to-__use-the-jpa-based-____revocation-registry-in-____picketlink/"
                      target="_blank">wordpre__ss.com/2013/07/21/how-__to-__use-the-jpa-based-____revocation-registry-in-____picketlink/</a><br>
                    <br>
                    <br>
                    &lt;<a moz-do-not-send="true"
href="http://wordpress.com/2013/07/21/how-__to-use-the-jpa-based-__revocation-registry-in-__picketlink/"
                      target="_blank">http://wordpress.com/2013/07/21/how-__to-use-the-jpa-based-__revocation-registry-in-__picketlink/</a>&gt;<br>
                    <br>
                    <br>
                    <br>
                    &lt;<a moz-do-not-send="true"
                      href="http://simplesassim." target="_blank">http://simplesassim.</a>__<a
                      moz-do-not-send="true"
href="http://wordpress.com/2013/07/21/how-__to-use-the-jpa-based-__revocation-registry-in-__picketlink/"
                      target="_blank">wordpress.com/2013/07/21/how-__to-use-the-jpa-based-__revocation-registry-in-__picketlink/</a><br>
                    <br>
                    <br>
                    &lt;<a moz-do-not-send="true"
href="http://simplesassim.wordpress.com/2013/07/21/how-to-use-the-jpa-based-revocation-registry-in-picketlink/"
                      target="_blank">http://simplesassim.wordpress.com/2013/07/21/how-to-use-the-jpa-based-revocation-registry-in-picketlink/</a>&gt;&gt;&gt;<br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
                    &nbsp;_____________________________________________________<br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;&gt;
                    wildfly-dev mailing list<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;&gt; <a
                      moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists.jboss.org"
                      target="_blank">wildfly-dev@lists.jboss.org</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists.jboss.org"
                      target="_blank">wildfly-dev@lists.jboss.org</a>&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a
                      moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists." target="_blank">wildfly-dev@lists.</a>__<a
                      moz-do-not-send="true" href="http://jboss.org"
                      target="_blank">jboss.org</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists.jboss.org"
                      target="_blank">wildfly-dev@lists.jboss.org</a>&gt;&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a
                      moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists" target="_blank">wildfly-dev@lists</a>.<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists" target="_blank">wildfly-dev@lists</a>.&gt;__<a
                      moz-do-not-send="true" href="http://jb__oss.org"
                      target="_blank">jb__oss.org</a> &lt;<a
                      moz-do-not-send="true" href="http://jboss.org"
                      target="_blank">http://jboss.org</a>&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a
                      moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists." target="_blank">wildfly-dev@lists.</a>__<a
                      moz-do-not-send="true" href="http://jboss.org"
                      target="_blank">jboss.org</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists.jboss.org"
                      target="_blank">wildfly-dev@lists.jboss.org</a>&gt;&gt;&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a
                      moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists" target="_blank">wildfly-dev@lists</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists" target="_blank">wildfly-dev@lists</a>&gt;.<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a
                      moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists" target="_blank">wildfly-dev@lists</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists" target="_blank">wildfly-dev@lists</a>&gt;.&gt;__<a
                      moz-do-not-send="true" href="http://j__b__oss.org"
                      target="_blank">j__b__oss.org</a><br>
                    &lt;<a moz-do-not-send="true"
                      href="http://jb__oss.org" target="_blank">http://jb__oss.org</a>&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="http://jboss.org" target="_blank">http://jboss.org</a>&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a
                      moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists" target="_blank">wildfly-dev@lists</a>.<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists" target="_blank">wildfly-dev@lists</a>.&gt;__<a
                      moz-do-not-send="true" href="http://jb__oss.org"
                      target="_blank">jb__oss.org</a> &lt;<a
                      moz-do-not-send="true" href="http://jboss.org"
                      target="_blank">http://jboss.org</a>&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a
                      moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists." target="_blank">wildfly-dev@lists.</a>__<a
                      moz-do-not-send="true" href="http://jboss.org"
                      target="_blank">jboss.org</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists.jboss.org"
                      target="_blank">wildfly-dev@lists.jboss.org</a>&gt;&gt;&gt;&gt;<br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a moz-do-not-send="true"
                      href="https://lists.jboss.org/______mailman/listinfo/wildfly-dev"
                      target="_blank">https://lists.jboss.org/______mailman/listinfo/wildfly-dev</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://lists.jboss.org/____mailman/listinfo/wildfly-dev"
                      target="_blank">https://lists.jboss.org/____mailman/listinfo/wildfly-dev</a>&gt;<br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://lists.jboss.org/____mailman/listinfo/wildfly-dev"
                      target="_blank">https://lists.jboss.org/____mailman/listinfo/wildfly-dev</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://lists.jboss.org/__mailman/listinfo/wildfly-dev"
                      target="_blank">https://lists.jboss.org/__mailman/listinfo/wildfly-dev</a>&gt;&gt;<br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://lists.jboss.org/____mailman/listinfo/wildfly-dev"
                      target="_blank">https://lists.jboss.org/____mailman/listinfo/wildfly-dev</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://lists.jboss.org/__mailman/listinfo/wildfly-dev"
                      target="_blank">https://lists.jboss.org/__mailman/listinfo/wildfly-dev</a>&gt;<br>
                    <br>
                    &lt;<a moz-do-not-send="true"
                      href="https://lists.jboss.org/__mailman/listinfo/wildfly-dev"
                      target="_blank">https://lists.jboss.org/__mailman/listinfo/wildfly-dev</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://lists.jboss.org/mailman/listinfo/wildfly-dev"
                      target="_blank">https://lists.jboss.org/mailman/listinfo/wildfly-dev</a>&gt;&gt;&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
                    _____________________________________________________<br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt; wildfly-dev
                    mailing list<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt; <a
                      moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists.jboss.org"
                      target="_blank">wildfly-dev@lists.jboss.org</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists.jboss.org"
                      target="_blank">wildfly-dev@lists.jboss.org</a>&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a
                      moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists." target="_blank">wildfly-dev@lists.</a>__<a
                      moz-do-not-send="true" href="http://jboss.org"
                      target="_blank">jboss.org</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists.jboss.org"
                      target="_blank">wildfly-dev@lists.jboss.org</a>&gt;&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a
                      moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists" target="_blank">wildfly-dev@lists</a>.<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists" target="_blank">wildfly-dev@lists</a>.&gt;__<a
                      moz-do-not-send="true" href="http://jb__oss.org"
                      target="_blank">jb__oss.org</a> &lt;<a
                      moz-do-not-send="true" href="http://jboss.org"
                      target="_blank">http://jboss.org</a>&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a
                      moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists." target="_blank">wildfly-dev@lists.</a>__<a
                      moz-do-not-send="true" href="http://jboss.org"
                      target="_blank">jboss.org</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists.jboss.org"
                      target="_blank">wildfly-dev@lists.jboss.org</a>&gt;&gt;&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a
                      moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists" target="_blank">wildfly-dev@lists</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists" target="_blank">wildfly-dev@lists</a>&gt;.<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a
                      moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists" target="_blank">wildfly-dev@lists</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists" target="_blank">wildfly-dev@lists</a>&gt;.&gt;__<a
                      moz-do-not-send="true" href="http://j__b__oss.org"
                      target="_blank">j__b__oss.org</a><br>
                    &lt;<a moz-do-not-send="true"
                      href="http://jb__oss.org" target="_blank">http://jb__oss.org</a>&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="http://jboss.org" target="_blank">http://jboss.org</a>&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a
                      moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists" target="_blank">wildfly-dev@lists</a>.<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists" target="_blank">wildfly-dev@lists</a>.&gt;__<a
                      moz-do-not-send="true" href="http://jb__oss.org"
                      target="_blank">jb__oss.org</a> &lt;<a
                      moz-do-not-send="true" href="http://jboss.org"
                      target="_blank">http://jboss.org</a>&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a
                      moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists." target="_blank">wildfly-dev@lists.</a>__<a
                      moz-do-not-send="true" href="http://jboss.org"
                      target="_blank">jboss.org</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists.jboss.org"
                      target="_blank">wildfly-dev@lists.jboss.org</a>&gt;&gt;&gt;&gt;<br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a moz-do-not-send="true"
                      href="https://lists.jboss.org/______mailman/listinfo/wildfly-dev"
                      target="_blank">https://lists.jboss.org/______mailman/listinfo/wildfly-dev</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://lists.jboss.org/____mailman/listinfo/wildfly-dev"
                      target="_blank">https://lists.jboss.org/____mailman/listinfo/wildfly-dev</a>&gt;<br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://lists.jboss.org/____mailman/listinfo/wildfly-dev"
                      target="_blank">https://lists.jboss.org/____mailman/listinfo/wildfly-dev</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://lists.jboss.org/__mailman/listinfo/wildfly-dev"
                      target="_blank">https://lists.jboss.org/__mailman/listinfo/wildfly-dev</a>&gt;&gt;<br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://lists.jboss.org/____mailman/listinfo/wildfly-dev"
                      target="_blank">https://lists.jboss.org/____mailman/listinfo/wildfly-dev</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://lists.jboss.org/__mailman/listinfo/wildfly-dev"
                      target="_blank">https://lists.jboss.org/__mailman/listinfo/wildfly-dev</a>&gt;<br>
                    <br>
                    &lt;<a moz-do-not-send="true"
                      href="https://lists.jboss.org/__mailman/listinfo/wildfly-dev"
                      target="_blank">https://lists.jboss.org/__mailman/listinfo/wildfly-dev</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://lists.jboss.org/mailman/listinfo/wildfly-dev"
                      target="_blank">https://lists.jboss.org/mailman/listinfo/wildfly-dev</a>&gt;&gt;&gt;<br>
                    <br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
                    _____________________________________________________<br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;wildfly-dev mailing
                    list<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists.jboss.org"
                      target="_blank">wildfly-dev@lists.jboss.org</a><br>
                    &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists.jboss.org"
                      target="_blank">wildfly-dev@lists.jboss.org</a>&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists." target="_blank">wildfly-dev@lists.</a>__<a
                      moz-do-not-send="true" href="http://jboss.org"
                      target="_blank">jboss.org</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists.jboss.org"
                      target="_blank">wildfly-dev@lists.jboss.org</a>&gt;&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a
                      moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists" target="_blank">wildfly-dev@lists</a>.<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists" target="_blank">wildfly-dev@lists</a>.&gt;__<a
                      moz-do-not-send="true" href="http://jb__oss.org"
                      target="_blank">jb__oss.org</a> &lt;<a
                      moz-do-not-send="true" href="http://jboss.org"
                      target="_blank">http://jboss.org</a>&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a
                      moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists." target="_blank">wildfly-dev@lists.</a>__<a
                      moz-do-not-send="true" href="http://jboss.org"
                      target="_blank">jboss.org</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists.jboss.org"
                      target="_blank">wildfly-dev@lists.jboss.org</a>&gt;&gt;&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a
                      moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists" target="_blank">wildfly-dev@lists</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists" target="_blank">wildfly-dev@lists</a>&gt;.<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a
                      moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists" target="_blank">wildfly-dev@lists</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists" target="_blank">wildfly-dev@lists</a>&gt;.&gt;__<a
                      moz-do-not-send="true" href="http://j__b__oss.org"
                      target="_blank">j__b__oss.org</a><br>
                    &lt;<a moz-do-not-send="true"
                      href="http://jb__oss.org" target="_blank">http://jb__oss.org</a>&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="http://jboss.org" target="_blank">http://jboss.org</a>&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a
                      moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists" target="_blank">wildfly-dev@lists</a>.<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists" target="_blank">wildfly-dev@lists</a>.&gt;__<a
                      moz-do-not-send="true" href="http://jb__oss.org"
                      target="_blank">jb__oss.org</a> &lt;<a
                      moz-do-not-send="true" href="http://jboss.org"
                      target="_blank">http://jboss.org</a>&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a
                      moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists." target="_blank">wildfly-dev@lists.</a>__<a
                      moz-do-not-send="true" href="http://jboss.org"
                      target="_blank">jboss.org</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists.jboss.org"
                      target="_blank">wildfly-dev@lists.jboss.org</a>&gt;&gt;&gt;&gt;<br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a moz-do-not-send="true"
                      href="https://lists.jboss.org/______mailman/listinfo/wildfly-dev"
                      target="_blank">https://lists.jboss.org/______mailman/listinfo/wildfly-dev</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://lists.jboss.org/____mailman/listinfo/wildfly-dev"
                      target="_blank">https://lists.jboss.org/____mailman/listinfo/wildfly-dev</a>&gt;<br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://lists.jboss.org/____mailman/listinfo/wildfly-dev"
                      target="_blank">https://lists.jboss.org/____mailman/listinfo/wildfly-dev</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://lists.jboss.org/__mailman/listinfo/wildfly-dev"
                      target="_blank">https://lists.jboss.org/__mailman/listinfo/wildfly-dev</a>&gt;&gt;<br>
                    <br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://lists.jboss.org/____mailman/listinfo/wildfly-dev"
                      target="_blank">https://lists.jboss.org/____mailman/listinfo/wildfly-dev</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://lists.jboss.org/__mailman/listinfo/wildfly-dev"
                      target="_blank">https://lists.jboss.org/__mailman/listinfo/wildfly-dev</a>&gt;<br>
                    <br>
                    &lt;<a moz-do-not-send="true"
                      href="https://lists.jboss.org/__mailman/listinfo/wildfly-dev"
                      target="_blank">https://lists.jboss.org/__mailman/listinfo/wildfly-dev</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://lists.jboss.org/mailman/listinfo/wildfly-dev"
                      target="_blank">https://lists.jboss.org/mailman/listinfo/wildfly-dev</a>&gt;&gt;&gt;<br>
                    <br>
                    <br>
                    <br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; --<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Fernando Ribeiro<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Upic<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<a moz-do-not-send="true"
                      href="tel:%2B55%2011%209%208111%204078"
                      value="+5511981114078" target="_blank">+55 11 9
                      8111 4078</a><br>
                    &lt;tel:%2B55%2011%209%208111%__204078&gt;<br>
                    <br>
                    <br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
                    _____________________________________________________<br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; wildfly-dev mailing list<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists.jboss.org"
                      target="_blank">wildfly-dev@lists.jboss.org</a><br>
                    &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists.jboss.org"
                      target="_blank">wildfly-dev@lists.jboss.org</a>&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists." target="_blank">wildfly-dev@lists.</a>__<a
                      moz-do-not-send="true" href="http://jboss.org"
                      target="_blank">jboss.org</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists.jboss.org"
                      target="_blank">wildfly-dev@lists.jboss.org</a>&gt;&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a
                      moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists" target="_blank">wildfly-dev@lists</a>.<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists" target="_blank">wildfly-dev@lists</a>.&gt;__<a
                      moz-do-not-send="true" href="http://jb__oss.org"
                      target="_blank">jb__oss.org</a> &lt;<a
                      moz-do-not-send="true" href="http://jboss.org"
                      target="_blank">http://jboss.org</a>&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&lt;mailto:<a
                      moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists." target="_blank">wildfly-dev@lists.</a>__<a
                      moz-do-not-send="true" href="http://jboss.org"
                      target="_blank">jboss.org</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a moz-do-not-send="true"
                      href="mailto:wildfly-dev@lists.jboss.org"
                      target="_blank">wildfly-dev@lists.jboss.org</a>&gt;&gt;&gt;<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a moz-do-not-send="true"
                      href="https://lists.jboss.org/______mailman/listinfo/wildfly-dev"
                      target="_blank">https://lists.jboss.org/______mailman/listinfo/wildfly-dev</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://lists.jboss.org/____mailman/listinfo/wildfly-dev"
                      target="_blank">https://lists.jboss.org/____mailman/listinfo/wildfly-dev</a>&gt;<br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://lists.jboss.org/____mailman/listinfo/wildfly-dev"
                      target="_blank">https://lists.jboss.org/____mailman/listinfo/wildfly-dev</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://lists.jboss.org/__mailman/listinfo/wildfly-dev"
                      target="_blank">https://lists.jboss.org/__mailman/listinfo/wildfly-dev</a>&gt;&gt;<br>
                    <br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://lists.jboss.org/____mailman/listinfo/wildfly-dev"
                      target="_blank">https://lists.jboss.org/____mailman/listinfo/wildfly-dev</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://lists.jboss.org/__mailman/listinfo/wildfly-dev"
                      target="_blank">https://lists.jboss.org/__mailman/listinfo/wildfly-dev</a>&gt;<br>
                    <br>
                    &lt;<a moz-do-not-send="true"
                      href="https://lists.jboss.org/__mailman/listinfo/wildfly-dev"
                      target="_blank">https://lists.jboss.org/__mailman/listinfo/wildfly-dev</a><br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a moz-do-not-send="true"
                      href="https://lists.jboss.org/mailman/listinfo/wildfly-dev"
                      target="_blank">https://lists.jboss.org/mailman/listinfo/wildfly-dev</a>&gt;&gt;&gt;<br>
                    <br>
                    <br>
                    <br>
                    <br>
                    <br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;--<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Fernando Ribeiro<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Upic<br>
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<a moz-do-not-send="true"
                      href="tel:%2B55%2011%209%208111%204078"
                      value="+5511981114078" target="_blank">+55 11 9
                      8111 4078</a><br>
                    &lt;tel:%2B55%2011%209%208111%__204078&gt;<br>
                    <br>
                    <br>
                    <br>
                  </blockquote>
                </blockquote>
              </blockquote>
            </blockquote>
          </blockquote>
        </div>
      </blockquote>
      &nbsp; </blockquote>
    <br>
  </body>
</html>