Coverage Report - org.kuali.rice.ksb.impl.bus.LazyEndpoint
 
Classes in this File Line Coverage Branch Coverage Complexity
LazyEndpoint
0%
0/15
0%
0/6
2.333
 
 1  
 /**
 2  
  * Copyright 2005-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  
 package org.kuali.rice.ksb.impl.bus;
 17  
 
 18  
 import org.kuali.rice.ksb.api.bus.Endpoint;
 19  
 import org.kuali.rice.ksb.api.bus.ServiceConfiguration;
 20  
 import org.kuali.rice.ksb.messaging.serviceconnectors.ServiceConnectorFactory;
 21  
 
 22  
 public class LazyEndpoint implements Endpoint {
 23  
 
 24  0
         private final Object lock = new Object();
 25  
         
 26  
         private final ServiceConfiguration serviceConfiguration;
 27  
         private volatile Object service;
 28  
         
 29  0
         public LazyEndpoint(ServiceConfiguration serviceConfiguration) {
 30  0
                 if (serviceConfiguration == null) {
 31  0
                         throw new IllegalArgumentException("serviceConfiguration was null");
 32  
                 }
 33  0
                 this.serviceConfiguration = serviceConfiguration;
 34  0
         }
 35  
         
 36  
         @Override
 37  
         public ServiceConfiguration getServiceConfiguration() {
 38  0
                 return this.serviceConfiguration;
 39  
         }
 40  
 
 41  
         @Override
 42  
         public Object getService() {
 43  
                 // double-checked locking idiom - see Effective Java, Item 71
 44  0
                 Object internalService = this.service;
 45  0
                 if (internalService == null) {
 46  0
                         synchronized (lock) {
 47  0
                                 internalService = this.service;
 48  0
                                 if (internalService == null) {
 49  0
                                         this.service = internalService = ServiceConnectorFactory.getServiceConnector(serviceConfiguration).getService(); 
 50  
                                 }
 51  0
                         }
 52  
                 }
 53  0
                 return internalService;
 54  
         }
 55  
 
 56  
 }