View Javadoc

1   /*
2    * Copyright 2009 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.rice.ksb.messaging;
17  
18  import java.lang.reflect.InvocationHandler;
19  import java.lang.reflect.InvocationTargetException;
20  import java.lang.reflect.Method;
21  import java.lang.reflect.Proxy;
22  
23  import javax.xml.namespace.QName;
24  
25  import org.apache.log4j.Logger;
26  import org.kuali.rice.core.resourceloader.GlobalResourceLoader;
27  import org.kuali.rice.core.util.ExceptionUtils;
28  
29  /**
30   * This class creates a proxy for services deployed on KSB. A 
31   * reference to the service is obtained only upon the first method
32   * invocation.
33   * 
34   * @author Kuali Rice Team (rice.collab@kuali.org)
35   *
36   */
37  public class KSBClientProxy implements InvocationHandler {
38  
39  private static final Logger LOG = Logger.getLogger(KSBClientProxy.class);
40      
41      QName serviceName;
42      Object service;
43  
44      @SuppressWarnings("unchecked")
45      public static <T> T newInstance(String serviceQName, Class<T> interfaceClass) throws InstantiationException, IllegalAccessException {
46          return (T)Proxy.newProxyInstance(interfaceClass.getClassLoader(), new Class[] { interfaceClass }, new KSBClientProxy(serviceQName));
47      }
48  
49      public KSBClientProxy(String serviceQName){
50          this.serviceName = QName.valueOf(serviceQName);
51      }
52      
53      public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
54          if (this.service == null){
55              LOG.info("Getting service using GRL for: " + serviceName);
56              service = GlobalResourceLoader.getService(serviceName);
57              LOG.info("Obtained service using GRL for: " + serviceName);
58          }
59          try {
60  	        return method.invoke(service, args);
61  	    } catch (InvocationTargetException e) {
62  	        throw ExceptionUtils.unwrapActualCause(e);
63  	    }
64      }
65  
66  }