Coverage Report - org.apache.turbine.pipeline.XmlValveAdapter
 
Classes in this File Line Coverage Branch Coverage Complexity
XmlValveAdapter
100%
6/6
N/A
1
 
 1  
 package org.apache.turbine.pipeline;
 2  
 
 3  
 /*
 4  
  * Licensed to the Apache Software Foundation (ASF) under one
 5  
  * or more contributor license agreements.  See the NOTICE file
 6  
  * distributed with this work for additional information
 7  
  * regarding copyright ownership.  The ASF licenses this file
 8  
  * to you under the Apache License, Version 2.0 (the
 9  
  * "License"); you may not use this file except in compliance
 10  
  * with the License.  You may obtain a copy of the License at
 11  
  *
 12  
  *   http://www.apache.org/licenses/LICENSE-2.0
 13  
  *
 14  
  * Unless required by applicable law or agreed to in writing,
 15  
  * software distributed under the License is distributed on an
 16  
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 17  
  * KIND, either express or implied.  See the License for the
 18  
  * specific language governing permissions and limitations
 19  
  * under the License.
 20  
  */
 21  
 
 22  
 import javax.xml.bind.annotation.adapters.XmlAdapter;
 23  
 
 24  
 /**
 25  
  * Creates Valve objects.
 26  
  *
 27  
  * @author <a href="mailto:tv@apache.org">Thomas Vandahl</a>
 28  
  */
 29  1470
 public class XmlValveAdapter extends XmlAdapter<XmlValve, Valve>
 30  
 {
 31  
     /**
 32  
      * @see javax.xml.bind.annotation.adapters.XmlAdapter#unmarshal(java.lang.Object)
 33  
      */
 34  
     @Override
 35  
     public Valve unmarshal(XmlValve xmlValve) throws Exception
 36  
     {
 37  1326
         Class<?> valveClass = Class.forName(xmlValve.getClazz());
 38  1326
         return (Valve) valveClass.newInstance();
 39  
     }
 40  
 
 41  
     /**
 42  
      * @see javax.xml.bind.annotation.adapters.XmlAdapter#marshal(java.lang.Object)
 43  
      */
 44  
     @Override
 45  
     public XmlValve marshal(Valve valve) throws Exception
 46  
     {
 47  6
         XmlValve xmlValve = new XmlValve();
 48  6
         xmlValve.setClazz(valve.getClass().getName());
 49  
 
 50  6
         return xmlValve;
 51  
     }
 52  
 }