Coverage Report - org.apache.maven.archiva.configuration.OrganisationInformation
 
Classes in this File Line Coverage Branch Coverage Complexity
OrganisationInformation
0%
0/10
N/A
1
 
 1  
 /*
 2  
  * $Id$
 3  
  */
 4  
 
 5  
 package org.apache.maven.archiva.configuration;
 6  
 
 7  
   //---------------------------------/
 8  
  //- Imported classes and packages -/
 9  
 //---------------------------------/
 10  
 
 11  
 import java.util.Date;
 12  
 
 13  
 /**
 14  
  * 
 15  
  *         The organisation information settings.
 16  
  *       
 17  
  * 
 18  
  * @version $Revision$ $Date$
 19  
  */
 20  0
 public class OrganisationInformation
 21  
     implements java.io.Serializable
 22  
 {
 23  
 
 24  
       //--------------------------/
 25  
      //- Class/Member Variables -/
 26  
     //--------------------------/
 27  
 
 28  
     /**
 29  
      * name of the organisation.
 30  
      */
 31  
     private String name;
 32  
 
 33  
     /**
 34  
      * name of the organisation.
 35  
      */
 36  
     private String url;
 37  
 
 38  
     /**
 39  
      * name of the organisation.
 40  
      */
 41  
     private String logoLocation;
 42  
 
 43  
 
 44  
       //-----------/
 45  
      //- Methods -/
 46  
     //-----------/
 47  
 
 48  
     /**
 49  
      * Get name of the organisation.
 50  
      * 
 51  
      * @return String
 52  
      */
 53  
     public String getLogoLocation()
 54  
     {
 55  0
         return this.logoLocation;
 56  
     } //-- String getLogoLocation()
 57  
 
 58  
     /**
 59  
      * Get name of the organisation.
 60  
      * 
 61  
      * @return String
 62  
      */
 63  
     public String getName()
 64  
     {
 65  0
         return this.name;
 66  
     } //-- String getName()
 67  
 
 68  
     /**
 69  
      * Get name of the organisation.
 70  
      * 
 71  
      * @return String
 72  
      */
 73  
     public String getUrl()
 74  
     {
 75  0
         return this.url;
 76  
     } //-- String getUrl()
 77  
 
 78  
     /**
 79  
      * Set name of the organisation.
 80  
      * 
 81  
      * @param logoLocation
 82  
      */
 83  
     public void setLogoLocation( String logoLocation )
 84  
     {
 85  0
         this.logoLocation = logoLocation;
 86  0
     } //-- void setLogoLocation( String )
 87  
 
 88  
     /**
 89  
      * Set name of the organisation.
 90  
      * 
 91  
      * @param name
 92  
      */
 93  
     public void setName( String name )
 94  
     {
 95  0
         this.name = name;
 96  0
     } //-- void setName( String )
 97  
 
 98  
     /**
 99  
      * Set name of the organisation.
 100  
      * 
 101  
      * @param url
 102  
      */
 103  
     public void setUrl( String url )
 104  
     {
 105  0
         this.url = url;
 106  0
     } //-- void setUrl( String )
 107  
 
 108  
 
 109  
 }