| @@ -172,7 +172,7 @@ | ||
| 172 | 172 | * | 
| 173 | 173 | * @param \AppserverIo\Lang\Reflection\MethodInterface $reflectionMethod The reflection method with the action configuration | 
| 174 | 174 | * | 
| 175 | - * @return \AppserverIo\Routlt\Description\ActionDescriptorInterface The initialized descriptor | |
| 175 | + * @return null|ActionDescriptor The initialized descriptor | |
| 176 | 176 | */ | 
| 177 | 177 | public function fromReflectionMethod(MethodInterface $reflectionMethod) | 
| 178 | 178 |      { | 
| @@ -205,7 +205,7 @@ discard block | ||
| 205 | 205 | /** | 
| 206 | 206 | * Adds a EPB reference configuration. | 
| 207 | 207 | * | 
| 208 | - * @param \AppserverIo\Appserver\DependencyInjectionContainer\Interfaces\EpbReferenceDescriptorInterface $epbReference The EPB reference configuration | |
| 208 | + * @param EpbReferenceDescriptorInterface $epbReference The EPB reference configuration | |
| 209 | 209 | * | 
| 210 | 210 | * @return void | 
| 211 | 211 | */ | 
| @@ -239,7 +239,7 @@ discard block | ||
| 239 | 239 | /** | 
| 240 | 240 | * Adds a resource reference configuration. | 
| 241 | 241 | * | 
| 242 | - * @param \AppserverIo\Appserver\DependencyInjectionContainer\Interfaces\ResReferenceDescriptorInterface $resReference The resource reference configuration | |
| 242 | + * @param ResReferenceDescriptorInterface $resReference The resource reference configuration | |
| 243 | 243 | * | 
| 244 | 244 | * @return void | 
| 245 | 245 | */ | 
| @@ -307,7 +307,7 @@ discard block | ||
| 307 | 307 | * | 
| 308 | 308 | * @param \AppserverIo\Lang\Reflection\ClassInterface $reflectionClass The reflection class with the bean configuration | 
| 309 | 309 | * | 
| 310 | - * @return \AppserverIo\Routlt\Description\PathDescriptorInterface The initialized descriptor | |
| 310 | + * @return null|PathDescriptor The initialized descriptor | |
| 311 | 311 | */ | 
| 312 | 312 | public function fromReflectionClass(ClassInterface $reflectionClass) | 
| 313 | 313 |      { | 
| @@ -21,7 +21,6 @@ | ||
| 21 | 21 | namespace AppserverIo\Routlt\Description; | 
| 22 | 22 | |
| 23 | 23 | use AppserverIo\Lang\Reflection\ClassInterface; | 
| 24 | -use AppserverIo\Lang\Reflection\ReflectionAnnotation; | |
| 25 | 24 | use AppserverIo\Routlt\Annotations\Path; | 
| 26 | 25 | use AppserverIo\Routlt\Description\DescriptorException; | 
| 27 | 26 | use AppserverIo\Routlt\Description\ActionDescriptorInterface; | 
| @@ -20,9 +20,7 @@ | ||
| 20 | 20 | |
| 21 | 21 | namespace AppserverIo\Routlt\Description; | 
| 22 | 22 | |
| 23 | -use AppserverIo\Routlt\Annotations\Result; | |
| 24 | 23 | use AppserverIo\Lang\Reflection\AnnotationInterface; | 
| 25 | -use AppserverIo\Lang\Reflection\ReflectionAnnotation; | |
| 26 | 24 | use AppserverIo\Configuration\Interfaces\NodeInterface; | 
| 27 | 25 | |
| 28 | 26 | /** | 
| @@ -146,7 +146,7 @@ discard block | ||
| 146 | 146 | /** | 
| 147 | 147 | * Executes the custom interceptor functionality. | 
| 148 | 148 | * | 
| 149 | - * @param AppserverIo\Psr\MetaobjectProtocol\Aop\MethodInvocationInterface $methodInvocation Initially invoked method | |
| 149 | + * @param MethodInvocationInterface $methodInvocation Initially invoked method | |
| 150 | 150 | * | 
| 151 | 151 | * @return mixed The interceptors return value | 
| 152 | 152 | */ | 
| @@ -155,7 +155,7 @@ discard block | ||
| 155 | 155 | /** | 
| 156 | 156 | * Method that implements the interceptors functionality. | 
| 157 | 157 | * | 
| 158 | - * @param AppserverIo\Psr\MetaobjectProtocol\Aop\MethodInvocationInterface $methodInvocation Initially invoked method | |
| 158 | + * @param MethodInvocationInterface $methodInvocation Initially invoked method | |
| 159 | 159 | * | 
| 160 | 160 | * @return string|null The action result | 
| 161 | 161 | */ | 
| @@ -38,7 +38,7 @@ | ||
| 38 | 38 | /** | 
| 39 | 39 | * Method that implements the interceptors functionality. | 
| 40 | 40 | * | 
| 41 | - * @param AppserverIo\Psr\MetaobjectProtocol\Aop\MethodInvocationInterface $methodInvocation Initially invoked method | |
| 41 | + * @param MethodInvocationInterface $methodInvocation Initially invoked method | |
| 42 | 42 | * | 
| 43 | 43 | * @return string|null The action result | 
| 44 | 44 | */ | 
| @@ -21,12 +21,8 @@ | ||
| 21 | 21 | namespace AppserverIo\Routlt\Results; | 
| 22 | 22 | |
| 23 | 23 | use AppserverIo\Http\HttpProtocol; | 
| 24 | -use AppserverIo\Routlt\ActionInterface; | |
| 25 | 24 | use AppserverIo\Routlt\Util\ActionAware; | 
| 26 | 25 | use AppserverIo\Routlt\Util\ValidationAware; | 
| 27 | -use AppserverIo\Routlt\Util\ServletContextAware; | |
| 28 | -use AppserverIo\Routlt\Description\ResultDescriptorInterface; | |
| 29 | -use AppserverIo\Psr\Servlet\ServletContextInterface; | |
| 30 | 26 | use AppserverIo\Psr\Servlet\ServletRequestInterface; | 
| 31 | 27 | use AppserverIo\Psr\Servlet\ServletResponseInterface; | 
| 32 | 28 | |
| @@ -20,15 +20,10 @@ | ||
| 20 | 20 | |
| 21 | 21 | namespace AppserverIo\Routlt\Results; | 
| 22 | 22 | |
| 23 | -use AppserverIo\Http\HttpProtocol; | |
| 24 | -use AppserverIo\Routlt\ActionInterface; | |
| 25 | 23 | use AppserverIo\Routlt\Util\ActionAware; | 
| 26 | 24 | use AppserverIo\Routlt\Util\EncodingAware; | 
| 27 | 25 | use AppserverIo\Routlt\Util\ValidationAware; | 
| 28 | 26 | use AppserverIo\Routlt\Util\DefaultHeadersAware; | 
| 29 | -use AppserverIo\Routlt\Util\ServletContextAware; | |
| 30 | -use AppserverIo\Routlt\Description\ResultDescriptorInterface; | |
| 31 | -use AppserverIo\Psr\Servlet\ServletContextInterface; | |
| 32 | 27 | use AppserverIo\Psr\Servlet\ServletRequestInterface; | 
| 33 | 28 | use AppserverIo\Psr\Servlet\ServletResponseInterface; | 
| 34 | 29 | |
| @@ -69,7 +69,7 @@ | ||
| 69 | 69 | /** | 
| 70 | 70 | * Initializes the instance with the configured result value. | 
| 71 | 71 | * | 
| 72 | - * @param \AppserverIo\Routlt\Results\ResultDescriptorInterface $resultDescriptor The result descriptor instance | |
| 72 | + * @param ResultDescriptorInterface $resultDescriptor The result descriptor instance | |
| 73 | 73 | */ | 
| 74 | 74 | public function __construct(ResultDescriptorInterface $resultDescriptor) | 
| 75 | 75 |      { | 
| @@ -69,7 +69,7 @@ | ||
| 69 | 69 | /** | 
| 70 | 70 | * Initializes the instance with the configured result value. | 
| 71 | 71 | * | 
| 72 | - * @param \AppserverIo\Routlt\Results\ResultDescriptorInterface $resultDescriptor The result descriptor instance | |
| 72 | + * @param ResultDescriptorInterface $resultDescriptor The result descriptor instance | |
| 73 | 73 | */ | 
| 74 | 74 | public function __construct(ResultDescriptorInterface $resultDescriptor) | 
| 75 | 75 |      { |