001// =================== DO NOT EDIT THIS FILE ==================== 002// Generated by Modello 1.7, 003// any modifications will be overwritten. 004// ============================================================== 005 006package org.apache.archiva.configuration; 007 008/** 009 * Class RepositoryCheckPath. 010 * 011 * @version $Revision$ $Date$ 012 */ 013@SuppressWarnings( "all" ) 014public class RepositoryCheckPath 015 implements java.io.Serializable 016{ 017 018 //--------------------------/ 019 //- Class/Member Variables -/ 020 //--------------------------/ 021 022 /** 023 * 024 * The URL for which this path should be used 025 * . 026 */ 027 private String url; 028 029 /** 030 * 031 * The path to use for checking the repository 032 * connection. 033 * 034 */ 035 private String path; 036 037 038 //-----------/ 039 //- Methods -/ 040 //-----------/ 041 042 /** 043 * Get the path to use for checking the repository connection. 044 * 045 * @return String 046 */ 047 public String getPath() 048 { 049 return this.path; 050 } //-- String getPath() 051 052 /** 053 * Get the URL for which this path should be used. 054 * 055 * @return String 056 */ 057 public String getUrl() 058 { 059 return this.url; 060 } //-- String getUrl() 061 062 /** 063 * Set the path to use for checking the repository connection. 064 * 065 * @param path 066 */ 067 public void setPath( String path ) 068 { 069 this.path = path; 070 } //-- void setPath( String ) 071 072 /** 073 * Set the URL for which this path should be used. 074 * 075 * @param url 076 */ 077 public void setUrl( String url ) 078 { 079 this.url = url; 080 } //-- void setUrl( String ) 081 082}