@@ -96,7 +96,7 @@ |
||
| 96 | 96 | /** |
| 97 | 97 | * Getter for the heartbeat file path |
| 98 | 98 | * |
| 99 | - * @return string |
|
| 99 | + * @return \SplFileInfo |
|
| 100 | 100 | */ |
| 101 | 101 | public function getHeartbeatFile() |
| 102 | 102 | { |
@@ -137,7 +137,7 @@ discard block |
||
| 137 | 137 | /** |
| 138 | 138 | * Deploys the message queues. |
| 139 | 139 | * |
| 140 | - * @param \AppserverIo\Psr\Application\ApplicationInterface|\AppserverIo\Psr\Naming\NamingDirectoryInterface $application The application instance |
|
| 140 | + * @param ApplicationInterface $application The application instance |
|
| 141 | 141 | * |
| 142 | 142 | * @return void |
| 143 | 143 | */ |
@@ -255,7 +255,7 @@ discard block |
||
| 255 | 255 | * Returns the array with queue names and the MessageListener class |
| 256 | 256 | * names as values. |
| 257 | 257 | * |
| 258 | - * @return array The registered queues |
|
| 258 | + * @return GenericStackable The registered queues |
|
| 259 | 259 | */ |
| 260 | 260 | public function getQueues() |
| 261 | 261 | { |
@@ -121,7 +121,7 @@ |
||
| 121 | 121 | /** |
| 122 | 122 | * Returns the calendar base timeout instance. |
| 123 | 123 | * |
| 124 | - * @return \AppserverIo\Appserver\PersistenceContainer\CalendarBasedTimeout The calendar timeout instance |
|
| 124 | + * @return ScheduleExpression The calendar timeout instance |
|
| 125 | 125 | */ |
| 126 | 126 | public function getCalendarTimeout() |
| 127 | 127 | { |
@@ -89,7 +89,7 @@ |
||
| 89 | 89 | * @param boolean $persistent TRUE if the newly created timer has to be persistent |
| 90 | 90 | * @param \AppserverIo\Lang\Reflection\MethodInterface $timeoutMethod The timeout method to be invoked |
| 91 | 91 | * |
| 92 | - * @return \AppserverIo\Psr\EnterpriseBeans\TimerInterface The newly created Timer. |
|
| 92 | + * @return CalendarTimerBuilder The newly created Timer. |
|
| 93 | 93 | * @throws \AppserverIo\Psr\EnterpriseBeans\EnterpriseBeansException If this method could not complete due to a system-level failure. |
| 94 | 94 | * @throws \Exception |
| 95 | 95 | */ |
@@ -374,7 +374,7 @@ |
||
| 374 | 374 | * bean is packaged. These include both the programmatically-created timers and |
| 375 | 375 | * the automatically-created timers. |
| 376 | 376 | * |
| 377 | - * @return array<TimerInterface> A collection of javax.ejb.Timer objects. |
|
| 377 | + * @return StorageInterface A collection of javax.ejb.Timer objects. |
|
| 378 | 378 | * @throws \AppserverIo\Psr\EnterpriseBeans\EnterpriseBeansException If this method could not complete due to a system-level failure. |
| 379 | 379 | **/ |
| 380 | 380 | public function getAllTimers() |
@@ -200,7 +200,7 @@ |
||
| 200 | 200 | /** |
| 201 | 201 | * Prepares the module for upcoming request in specific context |
| 202 | 202 | * |
| 203 | - * @return boolean |
|
| 203 | + * @return boolean|null |
|
| 204 | 204 | * |
| 205 | 205 | * @throws \AppserverIo\Server\Exceptions\ModuleException |
| 206 | 206 | */ |
@@ -57,7 +57,7 @@ |
||
| 57 | 57 | * |
| 58 | 58 | * @param mixed $id The session ID |
| 59 | 59 | * @param string $name The session name |
| 60 | - * @param integer|\DateTime $lifetime Date and time after the session expires |
|
| 60 | + * @param integer $lifetime Date and time after the session expires |
|
| 61 | 61 | * @param integer|null $maximumAge Number of seconds until the session expires |
| 62 | 62 | * @param string|null $domain The host to which the user agent will send this cookie |
| 63 | 63 | * @param string $path The path describing the scope of this cookie |
@@ -102,7 +102,7 @@ |
||
| 102 | 102 | * @param \AppserverIo\Server\Interfaces\RequestContextInterface $requestContext A requests context instance |
| 103 | 103 | * @param integer $hook The current hook to process logic for |
| 104 | 104 | * |
| 105 | - * @return boolean |
|
| 105 | + * @return boolean|null |
|
| 106 | 106 | * |
| 107 | 107 | * @throws \AppserverIo\Server\Exceptions\ModuleException |
| 108 | 108 | */ |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | /** |
| 59 | 59 | * Injects the additional directories to be parsed when looking for servlets. |
| 60 | 60 | * |
| 61 | - * @param array $directories The additional directories to be parsed |
|
| 61 | + * @param \AppserverIo\Appserver\Core\Api\Node\DirectoryNode[] $directories The additional directories to be parsed |
|
| 62 | 62 | * |
| 63 | 63 | * @return void |
| 64 | 64 | */ |
@@ -293,7 +293,7 @@ discard block |
||
| 293 | 293 | /** |
| 294 | 294 | * Returns all servlets |
| 295 | 295 | * |
| 296 | - * @return array The servlets collection |
|
| 296 | + * @return StorageInterface The servlets collection |
|
| 297 | 297 | */ |
| 298 | 298 | public function getServlets() |
| 299 | 299 | { |
@@ -33,7 +33,6 @@ |
||
| 33 | 33 | use AppserverIo\Appserver\ServletEngine\DependencyInjection\DeploymentDescriptorParser; |
| 34 | 34 | use AppserverIo\Appserver\Application\Interfaces\ManagerSettingsInterface; |
| 35 | 35 | use AppserverIo\Appserver\Application\Interfaces\ManagerSettingsAwareInterface; |
| 36 | -use Doctrine\Common\Annotations\AnnotationRegistry; |
|
| 37 | 36 | |
| 38 | 37 | /** |
| 39 | 38 | * The servlet manager handles the servlets registered for the application. |