All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.toolsplus.atlassian.connect.play.api.events.AppEvent.scala Maven / Gradle / Ivy

The newest version!
package io.toolsplus.atlassian.connect.play.api.events

import io.toolsplus.atlassian.connect.play.api.models.AtlassianHost

/**
  * The base event.
  */
trait AppEvent

/**
  * An event which will be published after a new host has been installed.
  *
  * @param host The newly installed Atlassian host.
  */
case class AppInstalledEvent(host: AtlassianHost) extends AppEvent

/**
  * An event which will be published after a host has uninstalled.
  *
  * @param host The uninstalled Atlassian host.
  */
case class AppUninstalledEvent(host: AtlassianHost) extends AppEvent




© 2015 - 2024 Weber Informatics LLC | Privacy Policy