Interface ConfigurationActionEvent


@SupportedAll public interface ConfigurationActionEvent
The ConfigurationActionEvent class represents Configuration event.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    Add new configuration.
    static final int
    Delete configuration.
    static final int
    Modify configuration.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns component name.
    Returns configuration name.
    Returns realm name.
    int
    Returns the type of this event.
  • Field Details

  • Method Details

    • getType

      int getType()
      Returns the type of this event.
      Returns:
      The type of this event. Possible types are :
      • ADDED,
      • DELETED and
      • MODIFIED
    • getConfigurationName

      String getConfigurationName()
      Returns configuration name.
      Returns:
      configuration name or null if it is default configuration.
    • getComponentName

      String getComponentName()
      Returns component name.
      Returns:
      component name
    • getRealm

      String getRealm()
      Returns realm name.
      Returns:
      realm name or null if it is default configuration.