for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* AppserverIo\Routlt\Annotations\Path
*
* NOTICE OF LICENSE
* This source file is subject to the Open Software License (OSL 3.0)
* that is available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* PHP version 5
* @author Tim Wagner <[email protected]>
* @copyright 2015 TechDivision GmbH <[email protected]>
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* @link http://github.com/appserver-io/routlt
* @link http://www.appserver.io
*/
namespace AppserverIo\Routlt\Annotations;
use AppserverIo\Psr\EnterpriseBeans\Annotations\AbstractBeanAnnotation;
* Annotation to map a request path info to an action class.
class Path extends AbstractBeanAnnotation
{
* The annotation to define a servlets routing.
* @var string
const ANNOTATION = 'Path';
* This method returns the class name as
* a string.
* @return string
public static function __getClass()
return __CLASS__;
}