* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @link http://www.temando.com/ */ interface ExperienceInterface { const EXPERIENCE_ID = 'experience_id'; const NAME = 'name'; const STATUS = 'status'; const STATUS_DRAFT = 'draft'; const STATUS_DISABLED = 'disabled'; const STATUS_PRODUCTION = 'production'; /** * @return string */ public function getExperienceId(); /** * @return string */ public function getName(); /** * @return string */ public function getStatus(); }