Class ActivityProgressInformation
- java.lang.Object
- 
- com.evolveum.midpoint.schema.util.task.ActivityProgressInformation
 
- 
- All Implemented Interfaces:
- DebugDumpable,- Serializable
 
 public class ActivityProgressInformation extends Object implements DebugDumpable, Serializable Summarized representation of a progress of an activity and its sub-activities. Examples: - 23% in 1/3 - 23% in 2/2 in 2/3 TODO optimize task reading: avoid doing that for completed subtasks TODO i8n- See Also:
- Serialized Form
 
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static classActivityProgressInformation.RealizationState
 - 
Field Summary- 
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpableINDENT_STRING
 
- 
 - 
Method Summary- 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 - 
Methods inherited from interface com.evolveum.midpoint.util.DebugDumpabledebugDump, debugDumpLazily, debugDumpLazily
 
- 
 
- 
- 
- 
Method Detail- 
fromRootTask@NotNull public static @NotNull ActivityProgressInformation fromRootTask(@NotNull @NotNull TaskType task, @NotNull @NotNull ActivityProgressInformationBuilder.InformationSource source) Prepares the information from a root task. The task may or may not have its children resolved.
 - 
fromRootTask@NotNull public static @NotNull ActivityProgressInformation fromRootTask(@NotNull @NotNull TaskType task, @NotNull @NotNull TaskResolver resolver, @NotNull @NotNull ActivityProgressInformationBuilder.InformationSource source) Prepares the information from a root task. The task may or may not have its children resolved. Note: the `resolver` parameter is dubious. Consider removing it.
 - 
getActivityIdentifierpublic String getActivityIdentifier() 
 - 
getActivityPath@NotNull public @NotNull ActivityPath getActivityPath() 
 - 
getRealizationStatepublic ActivityProgressInformation.RealizationState getRealizationState() 
 - 
getBucketsProgresspublic BucketsProgressInformation getBucketsProgress() 
 - 
getItemsProgresspublic ItemsProgressInformation getItemsProgress() 
 - 
getChildren@NotNull public @NotNull List<ActivityProgressInformation> getChildren() 
 - 
debugDumppublic String debugDump(int indent) - Specified by:
- debugDumpin interface- DebugDumpable
 
 - 
toHumanReadableStringpublic String toHumanReadableString(boolean longForm) 
 - 
isCompletepublic boolean isComplete() 
 - 
isNotStartedpublic boolean isNotStarted() 
 - 
checkConsistencepublic void checkConsistence() 
 - 
getChildpublic ActivityProgressInformation getChild(String identifier) 
 - 
getErrorsRecursivepublic int getErrorsRecursive() 
 - 
getErrorspublic int getErrors() 
 - 
findpublic ActivityProgressInformation find(ActivityPath activityPath) 
 
- 
 
-