Class SubtasksTimesInfo
- java.lang.Object
-
- org.apache.flink.runtime.rest.messages.SubtasksTimesInfo
-
- All Implemented Interfaces:
ResponseBody
public class SubtasksTimesInfo extends Object implements ResponseBody
Response type of theSubtasksTimesHandler.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSubtasksTimesInfo.SubtaskTimeInfoNested class to encapsulate the sub task times info.
-
Field Summary
Fields Modifier and Type Field Description static StringFIELD_NAME_IDstatic StringFIELD_NAME_NAMEstatic StringFIELD_NAME_NOWstatic StringFIELD_NAME_SUBTASKS
-
Constructor Summary
Constructors Constructor Description SubtasksTimesInfo(String id, String name, long now, List<SubtasksTimesInfo.SubtaskTimeInfo> subtasks)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringgetId()StringgetName()longgetNow()List<SubtasksTimesInfo.SubtaskTimeInfo>getSubtasks()inthashCode()
-
-
-
Field Detail
-
FIELD_NAME_ID
public static final String FIELD_NAME_ID
- See Also:
- Constant Field Values
-
FIELD_NAME_NAME
public static final String FIELD_NAME_NAME
- See Also:
- Constant Field Values
-
FIELD_NAME_NOW
public static final String FIELD_NAME_NOW
- See Also:
- Constant Field Values
-
FIELD_NAME_SUBTASKS
public static final String FIELD_NAME_SUBTASKS
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
SubtasksTimesInfo
public SubtasksTimesInfo(String id, String name, long now, List<SubtasksTimesInfo.SubtaskTimeInfo> subtasks)
-
-
Method Detail
-
getId
public String getId()
-
getName
public String getName()
-
getNow
public long getNow()
-
getSubtasks
public List<SubtasksTimesInfo.SubtaskTimeInfo> getSubtasks()
-
-