org.apache.maven.archiva.model.Exclusion Maven / Gradle / Ivy
/*
* $Id$
*/
package org.apache.maven.archiva.model;
//---------------------------------/
//- Imported classes and packages -/
//---------------------------------/
import java.util.Date;
/**
* null
*
* @version $Revision$ $Date$
*/
public class Exclusion implements java.io.Serializable {
//--------------------------/
//- Class/Member Variables -/
//--------------------------/
/**
* Field groupId
*/
private String groupId;
/**
* Field artifactId
*/
private String artifactId;
//-----------/
//- Methods -/
//-----------/
/**
* Get The artifact ID of the project to exclude.
*/
public String getArtifactId()
{
return this.artifactId;
} //-- String getArtifactId()
/**
* Get The group ID of the project to exclude.
*/
public String getGroupId()
{
return this.groupId;
} //-- String getGroupId()
/**
* Set The artifact ID of the project to exclude.
*
* @param artifactId
*/
public void setArtifactId(String artifactId)
{
this.artifactId = artifactId;
} //-- void setArtifactId(String)
/**
* Set The group ID of the project to exclude.
*
* @param groupId
*/
public void setGroupId(String groupId)
{
this.groupId = groupId;
} //-- void setGroupId(String)
private static final long serialVersionUID = 5655957444245343314L;
private String modelEncoding = "UTF-8";
public void setModelEncoding( String modelEncoding )
{
this.modelEncoding = modelEncoding;
}
public String getModelEncoding()
{
return modelEncoding;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy