Coverage Report - org.kuali.rice.ksb.messaging.serviceconnectors.AbstractServiceConnector
 
Classes in this File Line Coverage Branch Coverage Complexity
AbstractServiceConnector
0%
0/12
N/A
1
 
 1  
 /*
 2  
  * Copyright 2007 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.serviceconnectors;
 17  
 
 18  
 import org.kuali.rice.core.security.credentials.CredentialsSource;
 19  
 import org.kuali.rice.ksb.messaging.BusClientFailureProxy;
 20  
 import org.kuali.rice.ksb.messaging.ServiceInfo;
 21  
 import org.kuali.rice.ksb.messaging.bam.BAMClientProxy;
 22  
 import org.springframework.util.Assert;
 23  
 
 24  
 
 25  
 /**
 26  
  * Abstract implementation of the ServiceConnector that holds the ServiceInfo
 27  
  * and the CredentialsSource as well as providing convenience proxy methods.
 28  
  * 
 29  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 30  
  * @since 0.9
 31  
  * 
 32  
  */
 33  
 public abstract class AbstractServiceConnector implements ServiceConnector {
 34  
 
 35  
         /**
 36  
          * Maintains the information about the service.  This should never be null.
 37  
          */
 38  
         private ServiceInfo serviceInfo;
 39  
 
 40  
         /**
 41  
          * Maintains the credentials needed by the service.  This may be null.
 42  
          */
 43  
         private CredentialsSource credentialsSource;
 44  
 
 45  0
         public AbstractServiceConnector(final ServiceInfo serviceInfo) {
 46  0
                 Assert.notNull(serviceInfo, "serviceInfo cannot be null");
 47  0
                 this.serviceInfo = serviceInfo;
 48  0
         }
 49  
 
 50  
         public ServiceInfo getServiceInfo() {
 51  0
                 return this.serviceInfo;
 52  
         }
 53  
 
 54  
         public void setServiceInfo(final ServiceInfo serviceInfo) {
 55  0
                 this.serviceInfo = serviceInfo;
 56  0
         }
 57  
 
 58  
         public void setCredentialsSource(final CredentialsSource credentialsSource) {
 59  0
                 this.credentialsSource = credentialsSource;
 60  0
         }
 61  
 
 62  
         protected CredentialsSource getCredentialsSource() {
 63  0
                 return this.credentialsSource;
 64  
         }
 65  
 
 66  
         protected Object getServiceProxyWithFailureMode(final Object service,
 67  
                         final ServiceInfo serviceInfo) {
 68  0
                 Object bamWrappedClientProxy = BAMClientProxy
 69  
                                 .wrap(service, serviceInfo);
 70  0
                 return BusClientFailureProxy.wrap(bamWrappedClientProxy, serviceInfo);
 71  
         }
 72  
 }