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 RepositoryCheckPath.
10 *
11 * @version $Revision$ $Date$
12 */
13 @SuppressWarnings( "all" )
14 public class RepositoryCheckPath
15 implements java.io.Serializable
16 {
17
18 //--------------------------/
19 //- Class/Member Variables -/
20 //--------------------------/
21
22 /**
23 *
24 * The URL for which this path should be used
25 * .
26 */
27 private String url;
28
29 /**
30 *
31 * The path to use for checking the repository
32 * connection.
33 *
34 */
35 private String path;
36
37
38 //-----------/
39 //- Methods -/
40 //-----------/
41
42 /**
43 * Get the path to use for checking the repository connection.
44 *
45 * @return String
46 */
47 public String getPath()
48 {
49 return this.path;
50 } //-- String getPath()
51
52 /**
53 * Get the URL for which this path should be used.
54 *
55 * @return String
56 */
57 public String getUrl()
58 {
59 return this.url;
60 } //-- String getUrl()
61
62 /**
63 * Set the path to use for checking the repository connection.
64 *
65 * @param path
66 */
67 public void setPath( String path )
68 {
69 this.path = path;
70 } //-- void setPath( String )
71
72 /**
73 * Set the URL for which this path should be used.
74 *
75 * @param url
76 */
77 public void setUrl( String url )
78 {
79 this.url = url;
80 } //-- void setUrl( String )
81
82 }