@@ -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 | */ |
@@ -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 | */ |
@@ -579,7 +579,7 @@ |
||
579 | 579 | /** |
580 | 580 | * Returns the parsed password. |
581 | 581 | * |
582 | - * @return \AppserverIo\Lang\String The password |
|
582 | + * @return string|null The password |
|
583 | 583 | */ |
584 | 584 | public function getPassword() |
585 | 585 | { |
@@ -558,7 +558,7 @@ discard block |
||
558 | 558 | * |
559 | 559 | * @param string $documentRoot The document root |
560 | 560 | * |
561 | - * @return void |
|
561 | + * @return string |
|
562 | 562 | */ |
563 | 563 | public function setDocumentRoot($documentRoot) |
564 | 564 | { |
@@ -666,7 +666,7 @@ discard block |
||
666 | 666 | /** |
667 | 667 | * Return content |
668 | 668 | * |
669 | - * @return string $content |
|
669 | + * @return resource $content |
|
670 | 670 | */ |
671 | 671 | public function getBodyContent() |
672 | 672 | { |
@@ -912,7 +912,7 @@ discard block |
||
912 | 912 | * |
913 | 913 | * @param boolean $create TRUE to create a new session, else FALSE |
914 | 914 | * |
915 | - * @return null|\AppserverIo\Psr\Servlet\Http\HttpSessionInterface The session instance |
|
915 | + * @return null|SessionWrapper The session instance |
|
916 | 916 | * |
917 | 917 | * @throws \Exception |
918 | 918 | */ |
@@ -1040,7 +1040,7 @@ discard block |
||
1040 | 1040 | * |
1041 | 1041 | * @param string $name The header key to name |
1042 | 1042 | * |
1043 | - * @return string|null |
|
1043 | + * @return string |
|
1044 | 1044 | */ |
1045 | 1045 | public function getHeader($name) |
1046 | 1046 | { |
@@ -1198,7 +1198,7 @@ discard block |
||
1198 | 1198 | /** |
1199 | 1199 | * Returns query string of the actual request. |
1200 | 1200 | * |
1201 | - * @return string|null The query string of the actual request |
|
1201 | + * @return string The query string of the actual request |
|
1202 | 1202 | */ |
1203 | 1203 | public function getQueryString() |
1204 | 1204 | { |
@@ -1269,7 +1269,7 @@ discard block |
||
1269 | 1269 | * |
1270 | 1270 | * @param string $name The name of the server variable to be returned |
1271 | 1271 | * |
1272 | - * @return mixed The requested server variable |
|
1272 | + * @return string The requested server variable |
|
1273 | 1273 | */ |
1274 | 1274 | public function getServerVar($name) |
1275 | 1275 | { |
@@ -1293,7 +1293,7 @@ discard block |
||
1293 | 1293 | /** |
1294 | 1294 | * Return's the authentication type. |
1295 | 1295 | * |
1296 | - * @return string|null The authentication type |
|
1296 | + * @return string The authentication type |
|
1297 | 1297 | */ |
1298 | 1298 | public function getAuthType() |
1299 | 1299 | { |
@@ -1315,7 +1315,7 @@ discard block |
||
1315 | 1315 | /** |
1316 | 1316 | * Return's a PrincipalInterface object containing the name of the current authenticated user. |
1317 | 1317 | * |
1318 | - * @return \AppserverIo\Psr\Security\PrincipalInterface|null The user principal |
|
1318 | + * @return PrincipalInterface The user principal |
|
1319 | 1319 | */ |
1320 | 1320 | public function getUserPrincipal() |
1321 | 1321 | { |
@@ -1359,7 +1359,7 @@ discard block |
||
1359 | 1359 | * Use the container login mechanism configured for the servlet context to authenticate the user making this |
1360 | 1360 | * request. This method may modify and commit the passed servlet response. |
1361 | 1361 | * |
1362 | - * @param AppserverIo\Psr\Servlet\Http\HttpServletResponseInterface $servletResponse The servlet response |
|
1362 | + * @param HttpServletResponseInterface $servletResponse The servlet response |
|
1363 | 1363 | * |
1364 | 1364 | * @return boolean TRUE when non-null values were or have been established as the values returned by getRemoteUser, else FALSE |
1365 | 1365 | */ |