Coverage Report - org.kuali.rice.ksb.messaging.serviceexporters.RESTServiceExporter
 
Classes in this File Line Coverage Branch Coverage Complexity
RESTServiceExporter
0%
0/34
0%
0/10
4.5
 
 1  
 /*
 2  
  * Copyright 2005-2007 The Kuali Foundation
 3  
  *
 4  
  *
 5  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 6  
  * you may not use this file except in compliance with the License.
 7  
  * You may obtain a copy of the License at
 8  
  *
 9  
  * http://www.opensource.org/licenses/ecl2.php
 10  
  *
 11  
  * Unless required by applicable law or agreed to in writing, software
 12  
  * distributed under the License is distributed on an "AS IS" BASIS,
 13  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 14  
  * See the License for the specific language governing permissions and
 15  
  * limitations under the License.
 16  
  */
 17  
 package org.kuali.rice.ksb.messaging.serviceexporters;
 18  
 
 19  
 import java.util.List;
 20  
 
 21  
 import org.apache.cxf.Bus;
 22  
 import org.apache.cxf.binding.BindingFactoryManager;
 23  
 import org.apache.cxf.endpoint.ServerRegistry;
 24  
 import org.apache.cxf.interceptor.LoggingInInterceptor;
 25  
 import org.apache.cxf.interceptor.LoggingOutInterceptor;
 26  
 import org.apache.cxf.jaxrs.JAXRSBindingFactory;
 27  
 import org.apache.cxf.jaxrs.JAXRSServerFactoryBean;
 28  
 import org.apache.cxf.jaxrs.lifecycle.SingletonResourceProvider;
 29  
 import org.apache.log4j.Logger;
 30  
 import org.kuali.rice.core.api.exception.RiceRuntimeException;
 31  
 import org.kuali.rice.ksb.api.bus.ServiceDefinition;
 32  
 import org.kuali.rice.ksb.api.bus.support.RestServiceDefinition;
 33  
 
 34  
 
 35  
 /**
 36  
  * ServiceExporter for RESTful services.  This class handles the service binding and exposure via CXF.
 37  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 38  
  */
 39  
 public class RESTServiceExporter extends AbstractWebServiceExporter implements ServiceExporter {
 40  
 
 41  0
         private static final Logger LOG = Logger.getLogger(RESTServiceExporter.class);
 42  
 
 43  
         public RESTServiceExporter(RestServiceDefinition serviceDefinition, Bus cxfBus, ServerRegistry cxfServerRegistry) {
 44  0
                 super(serviceDefinition, cxfBus, cxfServerRegistry);
 45  0
         }
 46  
 
 47  
         /**
 48  
          * This publishes the cxf service onto the cxf bus.
 49  
          *
 50  
          * @param serviceImpl
 51  
          * @throws Exception
 52  
          */
 53  
         @Override
 54  
         public void publishService(ServiceDefinition serviceDefinition, Object serviceImpl, String address) {
 55  0
                 RestServiceDefinition restServiceDef = (RestServiceDefinition)serviceDefinition;
 56  
 
 57  0
                 LOG.info("Creating JAXRSService " + restServiceDef.getServiceName());
 58  0
                 JAXRSServerFactoryBean svrFactory = new JAXRSServerFactoryBean();
 59  0
         svrFactory.setBus(getCXFBus());
 60  
 
 61  0
         List<Object> resources = restServiceDef.getResources();
 62  0
         if (resources != null && !resources.isEmpty()) {
 63  0
                 svrFactory.setServiceBeans(resources);
 64  
         } else {
 65  
                 try {
 66  0
                         Class<?> resourceClass = this.getClass().getClassLoader().loadClass(restServiceDef.getResourceClass());
 67  0
                         svrFactory.setResourceClasses(resourceClass);
 68  0
                         svrFactory.setResourceProvider(resourceClass, new SingletonResourceProvider(serviceImpl));
 69  0
                 } catch (ClassNotFoundException e) {
 70  0
                         throw new RiceRuntimeException("Failed to publish the service because resource class could not be loaded: " + restServiceDef.getResourceClass(), e);
 71  0
                 }
 72  
         }
 73  
 
 74  0
         svrFactory.setServiceName(restServiceDef.getServiceName());
 75  0
         svrFactory.setAddress(address);
 76  0
         svrFactory.setExtensionMappings(restServiceDef.getExtensionMappings());
 77  0
         svrFactory.setLanguageMappings(restServiceDef.getLanguageMappings());
 78  
 
 79  0
         List<Object> providers = restServiceDef.getProviders();
 80  0
         if (providers != null) {
 81  0
                 svrFactory.setProviders(providers);
 82  
         }
 83  
 
 84  0
         BindingFactoryManager bindingFactoryManager = getCXFBus().getExtension(BindingFactoryManager.class);
 85  0
         JAXRSBindingFactory bindingFactory = new JAXRSBindingFactory();
 86  0
         bindingFactory.setBus(getCXFBus());
 87  0
         bindingFactoryManager.registerBindingFactory(JAXRSBindingFactory.JAXRS_BINDING_ID, bindingFactory);
 88  
 
 89  
                 //Set logging interceptors
 90  0
         if (LOG.isDebugEnabled()) {
 91  0
                 svrFactory.getInInterceptors().add(new LoggingInInterceptor());
 92  
         }
 93  
 //        svrFactory.getInInterceptors().add(new RESTConnector.VerifyingInInterceptor());
 94  0
         if (LOG.isDebugEnabled()) {
 95  0
                 svrFactory.getOutInterceptors().add(new LoggingOutInterceptor());
 96  
         }
 97  
 //                svrFactory.getOutInterceptors().add(new RESTConnector.SigningOutInterceptor());
 98  
 
 99  0
         svrFactory.setPublishedEndpointUrl(restServiceDef.getEndpointUrl().toExternalForm());
 100  0
                 svrFactory.create();
 101  0
         }
 102  
 
 103  
 }