Class ProgressStatusImpl

java.lang.Object
org.glassfish.api.admin.progress.ProgressStatusBase
org.glassfish.api.admin.progress.ProgressStatusImpl
All Implemented Interfaces:
Serializable, ProgressStatus

public class ProgressStatusImpl extends ProgressStatusBase implements Serializable
ProgressStatus implementation suggested for AdminCommand implementation.
Author:
mmares
See Also:
  • Constructor Details

    • ProgressStatusImpl

      public ProgressStatusImpl()
      Constructor for instancing dummy (without propagation) instance.
    • ProgressStatusImpl

      protected ProgressStatusImpl(ProgressStatusBase parent, String id)
      Construct unnamed ProgressStatusImpl
      Parameters:
      parent - Parent ProgressStatusBase
      id - Is useful for event transfer
    • ProgressStatusImpl

      protected ProgressStatusImpl(String name, ProgressStatusBase parent, String id)
      Construct named ProgressStatusImpl.
      Parameters:
      name - of the ProgressStatus implementation is used to identify source of progress messages.
      parent - Parent ProgressStatusBase
      id - Is useful for event transfer
    • ProgressStatusImpl

      protected ProgressStatusImpl(String name, int totalStepCount, ProgressStatusBase parent, String id)
      Construct named ProgressStatusImpl with defined expected count of steps.
      Parameters:
      name - of the ProgressStatus implementation is used to identify source of progress messages.
      totalStepCount - How many steps are expected in this ProgressStatus
      parent - Parent ProgressStatusBase
      id - Is useful for event transfer
  • Method Details