Package org.gitlab4j.api.models
Class ImportStatus
- java.lang.Object
-
- org.gitlab4j.api.models.ImportStatus
-
public class ImportStatus extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ImportStatus.Status
Enum representing the status of the import.
-
Constructor Summary
Constructors Constructor Description ImportStatus()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Date
getCreatedAt()
String
getDescription()
Integer
getId()
String
getImportError()
ImportStatus.Status
getImportStatus()
String
getName()
String
getNameWithNamespace()
String
getPath()
String
getPathWithNamespace()
void
setCreatedAt(Date createdAt)
void
setDescription(String description)
void
setId(Integer id)
void
setImportError(String importError)
void
setImportStatus(ImportStatus.Status importStatus)
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)
-
getImportStatus
public ImportStatus.Status getImportStatus()
-
setImportStatus
public void setImportStatus(ImportStatus.Status importStatus)
-
getImportError
public String getImportError()
-
setImportError
public void setImportError(String importError)
-
-