This project has retired. For details please refer to its Attic page.
Source code
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 V1RepositoryConfiguration.
010 * 
011 * @version $Revision$ $Date$
012 */
013@SuppressWarnings( "all" )
014public class V1RepositoryConfiguration
015    extends ManagedRepositoryConfiguration
016    implements java.io.Serializable
017{
018
019      //--------------------------/
020     //- Class/Member Variables -/
021    //--------------------------/
022
023    /**
024     * 
025     *             The URL for this repository.
026     *           
027     */
028    private String url;
029
030    /**
031     * Field indexed.
032     */
033    private boolean indexed = false;
034
035
036      //-----------/
037     //- Methods -/
038    //-----------/
039
040    /**
041     * Get the URL for this repository.
042     * 
043     * @return String
044     */
045    public String getUrl()
046    {
047        return this.url;
048    } //-- String getUrl()
049
050    /**
051     * Get the indexed field.
052     * 
053     * @return boolean
054     */
055    public boolean isIndexed()
056    {
057        return this.indexed;
058    } //-- boolean isIndexed()
059
060    /**
061     * Set the indexed field.
062     * 
063     * @param indexed
064     */
065    public void setIndexed( boolean indexed )
066    {
067        this.indexed = indexed;
068    } //-- void setIndexed( boolean )
069
070    /**
071     * Set the URL for this repository.
072     * 
073     * @param url
074     */
075    public void setUrl( String url )
076    {
077        this.url = url;
078    } //-- void setUrl( String )
079
080}