This project has retired. For details please refer to its Attic page.
RepositoryCheckPath xref
View Javadoc
1   package org.apache.archiva.configuration;
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  /**
23   * Class RepositoryCheckPath.
24   * 
25   * @version $Revision$ $Date$
26   */
27  @SuppressWarnings( "all" )
28  public class RepositoryCheckPath
29      implements java.io.Serializable
30  {
31  
32        //--------------------------/
33       //- Class/Member Variables -/
34      //--------------------------/
35  
36      /**
37       * 
38       *             The URL for which this path should be used
39       *           .
40       */
41      private String url;
42  
43      /**
44       * 
45       *             The path to use for checking the repository
46       * connection.
47       *           
48       */
49      private String path;
50  
51  
52        //-----------/
53       //- Methods -/
54      //-----------/
55  
56      /**
57       * Get the path to use for checking the repository connection.
58       * 
59       * @return String
60       */
61      public String getPath()
62      {
63          return this.path;
64      } //-- String getPath()
65  
66      /**
67       * Get the URL for which this path should be used.
68       * 
69       * @return String
70       */
71      public String getUrl()
72      {
73          return this.url;
74      } //-- String getUrl()
75  
76      /**
77       * Set the path to use for checking the repository connection.
78       * 
79       * @param path
80       */
81      public void setPath( String path )
82      {
83          this.path = path;
84      } //-- void setPath( String )
85  
86      /**
87       * Set the URL for which this path should be used.
88       * 
89       * @param url
90       */
91      public void setUrl( String url )
92      {
93          this.url = url;
94      } //-- void setUrl( String )
95  
96  }