Package org.jboss.mx.interceptor

Examples of org.jboss.mx.interceptor.ReflectedDispatcher


               m = MethodMapper.lookupOperation(op, this);
               if (m != null)
               {
                  // operation found on the 'this' invoker
                  target = this;
                  dispatcher = new ReflectedDispatcher(m, dynamicResource);
               }
               else
               {
                  // operation not found, use late binding
                  // What is this late binding attempt and should there be a warning?
                  dispatcher = new ReflectedDispatcher(dynamicResource);
               }
            }
            else
            {
               // operation found on the resource
               target = resource;
               dispatcher = new ReflectedDispatcher(m, dynamicResource);
            }
            if (trace)
               log.trace(getObjectName() + " will dispatch op=" + opKey +
                  " to " + Strings.defaultToString(target) +
                  " method= " + m);           
View Full Code Here


/*      */       {
/* 1098 */         m = MethodMapper.lookupOperation(op, this);
/* 1099 */         if (m != null)
/*      */         {
/* 1102 */           target = this;
/* 1103 */           dispatcher = new ReflectedDispatcher(m, this.dynamicResource);
/*      */         }
/*      */         else
/*      */         {
/* 1109 */           dispatcher = new ReflectedDispatcher(this.dynamicResource);
/*      */         }
/*      */
/*      */       }
/*      */       else
/*      */       {
/* 1115 */         target = this.resource;
/* 1116 */         dispatcher = new ReflectedDispatcher(m, this.dynamicResource);
/*      */       }
/* 1118 */       if (trace) {
/* 1119 */         this.log.trace(getObjectName() + " will dispatch op=" + opKey + " to " + Strings.defaultToString(target) + " method= " + m);
/*      */       }
/*      */
View Full Code Here

TOP

Related Classes of org.jboss.mx.interceptor.ReflectedDispatcher

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