Package org.gitlab4j.api.models
Class ExportStatus
- java.lang.Object
-
- org.gitlab4j.api.models.ExportStatus
-
public class ExportStatus extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ExportStatus.Status
Enum representing the status of the export.
-
Constructor Summary
Constructors Constructor Description ExportStatus()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Date
getCreatedAt()
String
getDescription()
ExportStatus.Status
getExportStatus()
Integer
getId()
String
getLinkByName(String name)
Map<String,String>
getLinks()
String
getName()
String
getNameWithNamespace()
String
getPath()
String
getPathWithNamespace()
void
setCreatedAt(Date createdAt)
void
setDescription(String description)
void
setExportStatus(ExportStatus.Status exportStatus)
void
setId(Integer id)
void
setLinks(Map<String,String> links)
void
setName(String name)
void
setNameWithNamespace(String nameWithNamespace)
void
setPath(String path)
void
setPathWithNamespace(String pathWithNamespace)
String
toString()
-
-
-
Method Detail
-
getId
public Integer getId()
-
setId
public void setId(Integer id)
-
getDescription
public String getDescription()
-
setDescription
public void setDescription(String description)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getNameWithNamespace
public String getNameWithNamespace()
-
setNameWithNamespace
public void setNameWithNamespace(String nameWithNamespace)
-
getPath
public String getPath()
-
setPath
public void setPath(String path)
-
getPathWithNamespace
public String getPathWithNamespace()
-
setPathWithNamespace
public void setPathWithNamespace(String pathWithNamespace)
-
getCreatedAt
public Date getCreatedAt()
-
setCreatedAt
public void setCreatedAt(Date createdAt)
-
getExportStatus
public ExportStatus.Status getExportStatus()
-
setExportStatus
public void setExportStatus(ExportStatus.Status exportStatus)
-
-