Coverage Report - org.apache.maven.plugins.site.webapp.DoxiaBean
 
Classes in this File Line Coverage Branch Coverage Complexity
DoxiaBean
0%
0/14
N/A
0
 
 1  
 package org.apache.maven.plugins.site.webapp;
 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 java.io.File;
 23  
 import java.util.Map;
 24  
 
 25  
 import org.apache.maven.doxia.siterenderer.DocumentRenderer;
 26  
 import org.apache.maven.doxia.siterenderer.SiteRenderingContext;
 27  
 
 28  
 /**
 29  
  * Bean to handle Doxia in a servlet context attribute
 30  
  *
 31  
  * @author <a href="mailto:vincent.siveton@gmail.com">Vincent Siveton</a>
 32  
  * @version $Id: org.apache.maven.plugins.site.webapp.DoxiaBean.html 816556 2012-05-08 11:58:34Z hboutemy $
 33  
  */
 34  
 public class DoxiaBean
 35  
 {
 36  
     private SiteRenderingContext context;
 37  
 
 38  
     private Map<String, DocumentRenderer> documents;
 39  
 
 40  
     private File generatedSiteDirectory;
 41  
 
 42  
     /**
 43  
      * @param context
 44  
      * @param documents
 45  
      * @param generatedSiteDirectory
 46  
      */
 47  
     public DoxiaBean( SiteRenderingContext context, Map<String, DocumentRenderer> documents,
 48  
                                  File generatedSiteDirectory )
 49  0
     {
 50  0
         this.context = context;
 51  0
         this.documents = documents;
 52  0
         this.generatedSiteDirectory = generatedSiteDirectory;
 53  0
     }
 54  
 
 55  
     public SiteRenderingContext getContext()
 56  
     {
 57  0
         return context;
 58  
     }
 59  
 
 60  
     public void setContext( SiteRenderingContext context )
 61  
     {
 62  0
         this.context = context;
 63  0
     }
 64  
 
 65  
     public Map<String, DocumentRenderer> getDocuments()
 66  
     {
 67  0
         return documents;
 68  
     }
 69  
 
 70  
     public void setDocuments( Map<String, DocumentRenderer> documents )
 71  
     {
 72  0
         this.documents = documents;
 73  0
     }
 74  
 
 75  
     public File getGeneratedSiteDirectory()
 76  
     {
 77  0
         return generatedSiteDirectory;
 78  
     }
 79  
 
 80  
     public void setGeneratedSiteDirectory( File generatedSiteDirectory )
 81  
     {
 82  0
         this.generatedSiteDirectory = generatedSiteDirectory;
 83  0
     }
 84  
 }