Enum InstallContext.Phase

java.lang.Object
java.lang.Enum<InstallContext.Phase>
org.apache.jackrabbit.vault.packaging.InstallContext.Phase
All Implemented Interfaces:
Serializable, Comparable<InstallContext.Phase>
Enclosing interface:
InstallContext

public static enum InstallContext.Phase extends Enum<InstallContext.Phase>
The current phase of a package installation
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Specifies that the hook is going to be discarded. this is guaranteed to be called at the end of an installation process.
    Specifies that the package installation failed and the hooks can do some cleanup work.
    Specifies that the package was successfully installed and the hooks can do some post-installation work and cleanup.
    Specifies that the package is not yet installed and the hooks can do some pre-installation work
    Specifies that the prepare phase failed and the hocks can do some cleanup work.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the enum constant of this type with the specified name.
    Returns an array containing the constants of this enum type, in the order they are declared.

    Methods inherited from class java.lang.Enum

    clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • PREPARE

      public static final InstallContext.Phase PREPARE
      Specifies that the package is not yet installed and the hooks can do some pre-installation work
    • PREPARE_FAILED

      public static final InstallContext.Phase PREPARE_FAILED
      Specifies that the prepare phase failed and the hocks can do some cleanup work.
    • INSTALLED

      public static final InstallContext.Phase INSTALLED
      Specifies that the package was successfully installed and the hooks can do some post-installation work and cleanup.
    • INSTALL_FAILED

      public static final InstallContext.Phase INSTALL_FAILED
      Specifies that the package installation failed and the hooks can do some cleanup work.
    • END

      public static final InstallContext.Phase END
      Specifies that the hook is going to be discarded. this is guaranteed to be called at the end of an installation process.
  • Method Details

    • values

      public static InstallContext.Phase[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static InstallContext.Phase valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null