Class InfoItem
- java.lang.Object
-
- org.apache.maven.scm.command.info.InfoItem
-
- Direct Known Subclasses:
GitInfoItem,SvnInfoItem
public class InfoItem extends Object
- Since:
- 1.5
- Author:
- Kenney Westerhof, Olivier Lamy
-
-
Constructor Summary
Constructors Constructor Description InfoItem()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetLastChangedAuthor()StringgetLastChangedDate()StringgetLastChangedRevision()StringgetNodeKind()StringgetPath()StringgetRepositoryRoot()StringgetRepositoryUUID()StringgetRevision()StringgetSchedule()StringgetURL()voidsetLastChangedAuthor(String lastChangedAuthor)voidsetLastChangedDate(String lastChangedDate)voidsetLastChangedRevision(String lastChangedRevision)voidsetNodeKind(String nodeKind)voidsetPath(String path)voidsetRepositoryRoot(String repositoryRoot)voidsetRepositoryUUID(String repositoryUUID)voidsetRevision(String revision)voidsetSchedule(String schedule)voidsetURL(String url)
-
-
-
Method Detail
-
getPath
public String getPath()
-
setPath
public void setPath(String path)
-
getURL
public String getURL()
-
setURL
public void setURL(String url)
-
getRepositoryRoot
public String getRepositoryRoot()
-
setRepositoryRoot
public void setRepositoryRoot(String repositoryRoot)
-
getRepositoryUUID
public String getRepositoryUUID()
-
setRepositoryUUID
public void setRepositoryUUID(String repositoryUUID)
-
getRevision
public String getRevision()
-
setRevision
public void setRevision(String revision)
-
getNodeKind
public String getNodeKind()
-
setNodeKind
public void setNodeKind(String nodeKind)
-
getSchedule
public String getSchedule()
-
setSchedule
public void setSchedule(String schedule)
-
getLastChangedAuthor
public String getLastChangedAuthor()
-
setLastChangedAuthor
public void setLastChangedAuthor(String lastChangedAuthor)
-
getLastChangedRevision
public String getLastChangedRevision()
-
setLastChangedRevision
public void setLastChangedRevision(String lastChangedRevision)
-
getLastChangedDate
public String getLastChangedDate()
-
setLastChangedDate
public void setLastChangedDate(String lastChangedDate)
-
-