View Javadoc

1   /*
2    =================== DO NOT EDIT THIS FILE ====================
3    Generated by Modello 1.0.1 on 2009-09-09 03:30:24,
4    any modifications will be overwritten.
5    ==============================================================
6    */
7   
8   package org.apache.maven.model;
9   
10  /**
11   * Specifies the organization that produces this project.
12   * 
13   * @version $Revision$ $Date$
14   */
15  public class Organization
16      implements java.io.Serializable
17  {
18  
19        //--------------------------/
20       //- Class/Member Variables -/
21      //--------------------------/
22  
23      /**
24       * The full name of the organization.
25       */
26      private String name;
27  
28      /**
29       * The URL to the organization's home page.
30       */
31      private String url;
32  
33  
34        //-----------/
35       //- Methods -/
36      //-----------/
37  
38      /**
39       * Get the full name of the organization.
40       * 
41       * @return String
42       */
43      public String getName()
44      {
45          return this.name;
46      } //-- String getName()
47  
48      /**
49       * Get the URL to the organization's home page.
50       * 
51       * @return String
52       */
53      public String getUrl()
54      {
55          return this.url;
56      } //-- String getUrl()
57  
58      /**
59       * Set the full name of the organization.
60       * 
61       * @param name
62       */
63      public void setName( String name )
64      {
65          this.name = name;
66      } //-- void setName( String )
67  
68      /**
69       * Set the URL to the organization's home page.
70       * 
71       * @param url
72       */
73      public void setUrl( String url )
74      {
75          this.url = url;
76      } //-- void setUrl( String )
77  
78  
79  }