This project has retired. For details please refer to its Attic page.
V1RepositoryConfiguration xref
View Javadoc
1   // =================== DO NOT EDIT THIS FILE ====================
2   // Generated by Modello 1.7,
3   // any modifications will be overwritten.
4   // ==============================================================
5   
6   package org.apache.archiva.configuration;
7   
8   /**
9    * Class V1RepositoryConfiguration.
10   * 
11   * @version $Revision$ $Date$
12   */
13  @SuppressWarnings( "all" )
14  public class V1RepositoryConfiguration
15      extends ManagedRepositoryConfiguration
16      implements java.io.Serializable
17  {
18  
19        //--------------------------/
20       //- Class/Member Variables -/
21      //--------------------------/
22  
23      /**
24       * 
25       *             The URL for this repository.
26       *           
27       */
28      private String url;
29  
30      /**
31       * Field indexed.
32       */
33      private boolean indexed = false;
34  
35  
36        //-----------/
37       //- Methods -/
38      //-----------/
39  
40      /**
41       * Get the URL for this repository.
42       * 
43       * @return String
44       */
45      public String getUrl()
46      {
47          return this.url;
48      } //-- String getUrl()
49  
50      /**
51       * Get the indexed field.
52       * 
53       * @return boolean
54       */
55      public boolean isIndexed()
56      {
57          return this.indexed;
58      } //-- boolean isIndexed()
59  
60      /**
61       * Set the indexed field.
62       * 
63       * @param indexed
64       */
65      public void setIndexed( boolean indexed )
66      {
67          this.indexed = indexed;
68      } //-- void setIndexed( boolean )
69  
70      /**
71       * Set the URL for this repository.
72       * 
73       * @param url
74       */
75      public void setUrl( String url )
76      {
77          this.url = url;
78      } //-- void setUrl( String )
79  
80  }