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 class
SubtasksTimesInfo.SubtaskTimeInfo
Nested class to encapsulate the sub task times info.
-
Field Summary
Fields Modifier and Type Field Description static String
FIELD_NAME_ID
static String
FIELD_NAME_NAME
static String
FIELD_NAME_NOW
static String
FIELD_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 boolean
equals(Object o)
String
getId()
String
getName()
long
getNow()
List<SubtasksTimesInfo.SubtaskTimeInfo>
getSubtasks()
int
hashCode()
-
-
-
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()
-
-