Clover Coverage Report - Implementation 2.0.0-SNAPSHOT
Coverage timestamp: Wed Dec 31 1969 19:00:00 EST
../../../../../../img/srcFileCovDistChart0.png 0% of files have more coverage
8   68   7   2.67
4   38   0.88   3
3     2.33  
1    
 
  SynchronousServiceCallProxy       Line # 41 8 0% 7 15 0% 0.0
 
No Tests
 
1    /*
2    * Copyright 2006-2011 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   
17    package org.kuali.rice.ksb.messaging.serviceproxies;
18   
19    import org.kuali.rice.core.api.config.property.ConfigContext;
20    import org.kuali.rice.core.api.exception.RiceRuntimeException;
21    import org.kuali.rice.core.impl.resourceloader.ContextClassLoaderProxy;
22    import org.kuali.rice.core.util.ClassLoaderUtils;
23    import org.kuali.rice.ksb.messaging.AsynchronousCallback;
24    import org.kuali.rice.ksb.messaging.MessageServiceInvoker;
25    import org.kuali.rice.ksb.messaging.PersistedMessageBO;
26    import org.kuali.rice.ksb.messaging.RemotedServiceHolder;
27    import org.kuali.rice.ksb.util.KSBConstants;
28   
29    import java.io.Serializable;
30    import java.lang.reflect.Proxy;
31    import java.util.List;
32   
33   
34    /**
35    * Used to Call a service synchronously but through the messaging code within workflow. Used to when switching generally
36    * asynchronously called services to synchronously called services. Generally for testing purposes.
37    *
38    * @author Kuali Rice Team (rice.collab@kuali.org)
39    *
40    */
 
41    public class SynchronousServiceCallProxy extends AsynchronousServiceCallProxy {
42   
 
43  0 toggle private SynchronousServiceCallProxy(List<RemotedServiceHolder> serviceDefs, AsynchronousCallback callback,
44    Serializable context, String value1, String value2) {
45  0 super(serviceDefs, callback, context, value1, value2);
46    }
47   
 
48  0 toggle public static Object createInstance(List<RemotedServiceHolder> serviceDefs, AsynchronousCallback callback,
49    Serializable context, String value1, String value2) {
50  0 if (serviceDefs == null || serviceDefs.isEmpty()) {
51  0 throw new RuntimeException("Cannot create service proxy, no service(s) passed in.");
52    }
53  0 try {
54  0 return Proxy.newProxyInstance(ClassLoaderUtils.getDefaultClassLoader(), ContextClassLoaderProxy
55    .getInterfacesToProxy(serviceDefs.get(0).getService()), new SynchronousServiceCallProxy(
56    serviceDefs, callback, context, value1, value2));
57    } catch (Exception e) {
58  0 throw new RiceRuntimeException(e);
59    }
60    }
61   
 
62  0 toggle @Override
63    protected void executeMessage(PersistedMessageBO message) {
64  0 if (!Boolean.valueOf(ConfigContext.getCurrentContextConfig().getProperty(KSBConstants.Config.MESSAGING_OFF))) {
65  0 new MessageServiceInvoker(message).run();
66    }
67    }
68    }