org.apache.maven.archiva.configuration.V1RepositoryConfiguration Maven / Gradle / Ivy
The newest version!
/*
* $Id$
*/
package org.apache.maven.archiva.configuration;
//---------------------------------/
//- Imported classes and packages -/
//---------------------------------/
import java.util.Date;
/**
* null
*
* @version $Revision$ $Date$
*/
public class V1RepositoryConfiguration extends ManagedRepositoryConfiguration
implements java.io.Serializable
{
//--------------------------/
//- Class/Member Variables -/
//--------------------------/
/**
* Field url
*/
private String url;
/**
* Field indexed
*/
private boolean indexed = false;
//-----------/
//- Methods -/
//-----------/
/**
* Get
* The URL for this repository.
*
*/
public String getUrl()
{
return this.url;
} //-- String getUrl()
/**
* Get null
*/
public boolean isIndexed()
{
return this.indexed;
} //-- boolean isIndexed()
/**
* Set null
*
* @param indexed
*/
public void setIndexed(boolean indexed)
{
this.indexed = indexed;
} //-- void setIndexed(boolean)
/**
* Set
* The URL for this repository.
*
*
* @param url
*/
public void setUrl(String url)
{
this.url = url;
} //-- void setUrl(String)
private String modelEncoding = "UTF-8";
public void setModelEncoding( String modelEncoding )
{
this.modelEncoding = modelEncoding;
}
public String getModelEncoding()
{
return modelEncoding;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy