Package org.fedoraproject.xmvn.metadata
Class DependencyExclusion
- java.lang.Object
-
- org.fedoraproject.xmvn.metadata.DependencyExclusion
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Cloneable
public class DependencyExclusion extends java.lang.Object implements java.io.Serializable, java.lang.Cloneable
Description of artifact excluded from dependency tree.- Version:
- $Revision$ $Date$
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DependencyExclusion()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DependencyExclusion
clone()
Method clone.java.lang.String
getArtifactId()
Get artifact ID of the excluded artifact.java.lang.String
getGroupId()
Get group ID of the excluded artifact.void
setArtifactId(java.lang.String artifactId)
Set artifact ID of the excluded artifact.void
setGroupId(java.lang.String groupId)
Set group ID of the excluded artifact.
-
-
-
Method Detail
-
clone
public DependencyExclusion clone()
Method clone.- Overrides:
clone
in classjava.lang.Object
- Returns:
- DependencyExclusion
-
getArtifactId
public java.lang.String getArtifactId()
Get artifact ID of the excluded artifact.- Returns:
- String
-
getGroupId
public java.lang.String getGroupId()
Get group ID of the excluded artifact.- Returns:
- String
-
setArtifactId
public void setArtifactId(java.lang.String artifactId)
Set artifact ID of the excluded artifact.- Parameters:
artifactId
- a artifactId object.
-
setGroupId
public void setGroupId(java.lang.String groupId)
Set group ID of the excluded artifact.- Parameters:
groupId
- a groupId object.
-
-