Clover coverage report - Code Coverage for hivemind release 1.0-rc-1
Coverage timestamp: Wed Aug 25 2004 13:06:02 EDT
file stats: LOC: 56   Methods: 1
NCLOC: 20   Classes: 1
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover
 
 Source file Conditionals Statements Methods TOTAL
BuilderFactory.java - 100% 100% 100%
coverage
 1   
 //  Copyright 2004 The Apache Software Foundation
 2   
 //
 3   
 // Licensed under the Apache License, Version 2.0 (the "License");
 4   
 // you may not use this file except in compliance with the License.
 5   
 // You may obtain a copy of the License at
 6   
 //
 7   
 //     http://www.apache.org/licenses/LICENSE-2.0
 8   
 //
 9   
 // Unless required by applicable law or agreed to in writing, software
 10   
 // distributed under the License is distributed on an "AS IS" BASIS,
 11   
 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 12   
 // See the License for the specific language governing permissions and
 13   
 // limitations under the License.
 14   
 
 15   
 package org.apache.hivemind.service.impl;
 16   
 
 17   
 import java.util.List;
 18   
 
 19   
 import org.apache.commons.logging.Log;
 20   
 import org.apache.hivemind.ServiceImplementationFactory;
 21   
 import org.apache.hivemind.internal.Module;
 22   
 
 23   
 /**
 24   
  * Implementation of {@link org.apache.hivemind.ServiceImplementationFactory}
 25   
  * that can instantiate an object and then configure its properties.
 26   
  * 
 27   
  * <p>
 28   
  * Some thought has been given to using bytecode generation to create properties
 29   
  * for messages, extension point id, and so forth.  This is being avoided because it
 30   
  * undermines the ability to test service implemenations as POJOs, outside the
 31   
  * framework of HiveMind.
 32   
  * 
 33   
  * <p>
 34   
  * Instead the service is configured by means of the implementation's
 35   
  * constructor and setter methods.
 36   
  *
 37   
  * @author Howard Lewis Ship
 38   
  */
 39   
 public class BuilderFactory implements ServiceImplementationFactory
 40   
 {
 41  409
     public Object createCoreServiceImplementation(
 42   
         String serviceId,
 43   
         Class serviceInterface,
 44   
         Log serviceLog,
 45   
         Module invokingModule,
 46   
         List parameters)
 47   
     {
 48  409
         BuilderParameter parameter = (BuilderParameter) parameters.get(0);
 49   
 
 50  409
         BuilderFactoryLogic logic =
 51   
             new BuilderFactoryLogic(invokingModule, serviceLog, serviceId, parameter);
 52   
 
 53  409
         return logic.createService();
 54   
     }
 55   
 }
 56