Package org.glassfish.api.admin.progress
Class ProgressStatusDTO
- java.lang.Object
-
- org.glassfish.api.admin.progress.ProgressStatusDTO
-
public class ProgressStatusDTO extends Object
- Author:
- mmares
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classProgressStatusDTO.ChildProgressStatusDTO
-
Field Summary
Fields Modifier and Type Field Description protected Set<ProgressStatusDTO.ChildProgressStatusDTO>childrenprotected booleancompletedprotected intcurrentStepCountprotected Stringidprotected Stringnameprotected inttotalStepCount
-
Constructor Summary
Constructors Constructor Description ProgressStatusDTO()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Set<ProgressStatusDTO.ChildProgressStatusDTO>getChildren()intgetCurrentStepCount()StringgetId()StringgetName()intgetTotalStepCount()booleanisCompleted()voidsetCompleted(boolean completed)voidsetCurrentStepCount(int currentStepCount)voidsetId(String id)voidsetName(String name)voidsetTotalStepCount(int totalStepCount)StringtoString()
-
-
-
Field Detail
-
name
protected String name
-
id
protected String id
-
totalStepCount
protected int totalStepCount
-
currentStepCount
protected int currentStepCount
-
completed
protected boolean completed
-
children
protected Set<ProgressStatusDTO.ChildProgressStatusDTO> children
-
-
Method Detail
-
isCompleted
public boolean isCompleted()
-
setCompleted
public void setCompleted(boolean completed)
-
getCurrentStepCount
public int getCurrentStepCount()
-
setCurrentStepCount
public void setCurrentStepCount(int currentStepCount)
-
getId
public String getId()
-
setId
public void setId(String id)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getTotalStepCount
public int getTotalStepCount()
-
setTotalStepCount
public void setTotalStepCount(int totalStepCount)
-
getChildren
public Set<ProgressStatusDTO.ChildProgressStatusDTO> getChildren()
-
-