@@ -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 | { |
@@ -363,7 +363,7 @@ |
||
363 | 363 | * |
364 | 364 | * @param string $name The name to prepare the directory with |
365 | 365 | * |
366 | - * @return The prepared path |
|
366 | + * @return string prepared path |
|
367 | 367 | */ |
368 | 368 | public function prepareDirectory($name) |
369 | 369 | { |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | /** |
70 | 70 | * Injects the additional directories to be parsed when looking for servlets. |
71 | 71 | * |
72 | - * @param array $directories The additional directories to be parsed |
|
72 | + * @param \AppserverIo\Appserver\Core\Api\Node\DirectoryNode[] $directories The additional directories to be parsed |
|
73 | 73 | * |
74 | 74 | * @return void |
75 | 75 | */ |
@@ -316,7 +316,7 @@ discard block |
||
316 | 316 | /** |
317 | 317 | * Return's the bean manager settings. |
318 | 318 | * |
319 | - * @return \AppserverIo\Appserver\PersistenceContainer\PersistenceContainerSettingsInterface The bean manager settings |
|
319 | + * @return ManagerSettingsInterface The bean manager settings |
|
320 | 320 | */ |
321 | 321 | public function getManagerSettings() |
322 | 322 | { |
@@ -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 | */ |
@@ -52,7 +52,7 @@ |
||
52 | 52 | /** |
53 | 53 | * Initializes a new session instance. |
54 | 54 | * |
55 | - * @return \AppserverIo\RemoteMethodInvocation\SessionInterface The session instance |
|
55 | + * @return string The session instance |
|
56 | 56 | * @see \AppserverIo\RemoteMethodInvocation\ConnectionInterface::createContextSession() |
57 | 57 | */ |
58 | 58 | public function createContextSession() |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | /** |
94 | 94 | * Return's the bean manager settings. |
95 | 95 | * |
96 | - * @return \AppserverIo\Appserver\PersistenceContainer\PersistenceContainerSettingsInterface The bean manager settings |
|
96 | + * @return ManagerSettingsInterface The bean manager settings |
|
97 | 97 | */ |
98 | 98 | public function getManagerSettings() |
99 | 99 | { |
@@ -190,7 +190,7 @@ discard block |
||
190 | 190 | * Deploys the entity manager described by the passed XML node. |
191 | 191 | * |
192 | 192 | * @param \AppserverIo\Psr\Application\ApplicationInterface $application The application instance |
193 | - * @param \AppserverIo\Appserver\Core\Api\PersistenceUnitNodeInterface $persistenceUnitNode The XML node that describes the entity manager |
|
193 | + * @param PersistenceUnitNodeInterface $persistenceUnitNode The XML node that describes the entity manager |
|
194 | 194 | * |
195 | 195 | * @return void |
196 | 196 | */ |
@@ -24,7 +24,6 @@ |
||
24 | 24 | use AppserverIo\Collections\CollectionUtils; |
25 | 25 | use AppserverIo\Collections\CollectionInterface; |
26 | 26 | use AppserverIo\Storage\GenericStackable; |
27 | -use AppserverIo\Configuration\Configuration; |
|
28 | 27 | use AppserverIo\Appserver\Core\AbstractManager; |
29 | 28 | use AppserverIo\Appserver\Core\Api\Node\PersistenceNode; |
30 | 29 | use AppserverIo\Appserver\Core\Api\InvalidConfigurationException; |
@@ -23,7 +23,6 @@ |
||
23 | 23 | use AppserverIo\Logger\LoggerUtils; |
24 | 24 | use AppserverIo\Appserver\Core\AbstractDaemonThread; |
25 | 25 | use AppserverIo\Psr\Application\ApplicationInterface; |
26 | -use AppserverIo\Appserver\Naming\Utils\NamingDirectoryKeys; |
|
27 | 26 | use Psr\Log\LogLevel; |
28 | 27 | |
29 | 28 | /** |
@@ -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() |