*/ abstract class TestChangedEvent implements Event { const EVENT_NAME = __CLASS__; /** * (non-PHPdoc) * @see \oat\oatbox\event\Event::getName() */ public function getName() { return self::EVENT_NAME; } /** * Returns the service call id of the test session * * @return string */ abstract public function getServiceCallId(); /** * Returns a human readable description * of the test session in progress * * @return string */ abstract public function getNewStateDescription(); }