@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | /** |
| 73 | 73 | * Returns the application instance. |
| 74 | 74 | * |
| 75 | - * @return \AppserverIo\Psr\Application\ApplicationInterface|\AppserverIo\Psr\Naming\NamingDirectoryInterface The application instance |
|
| 75 | + * @return ApplicationInterface The application instance |
|
| 76 | 76 | */ |
| 77 | 77 | public function getApplication() |
| 78 | 78 | { |
@@ -116,7 +116,7 @@ discard block |
||
| 116 | 116 | * Has been automatically invoked by the container after the application |
| 117 | 117 | * instance has been created. |
| 118 | 118 | * |
| 119 | - * @param \AppserverIo\Psr\Application\ApplicationInterface|\AppserverIo\Psr\Naming\NamingDirectoryInterface $application The application instance |
|
| 119 | + * @param ApplicationInterface $application The application instance |
|
| 120 | 120 | * |
| 121 | 121 | * @return void |
| 122 | 122 | */ |
@@ -350,7 +350,7 @@ discard block |
||
| 350 | 350 | /** |
| 351 | 351 | * Returns the service instance to use. |
| 352 | 352 | * |
| 353 | - * @return \AppserverIo\Appserver\Core\Api\AbstractFileOperationService $service The service to use |
|
| 353 | + * @return string $service The service to use |
|
| 354 | 354 | */ |
| 355 | 355 | public function getService() |
| 356 | 356 | { |
@@ -360,7 +360,7 @@ discard block |
||
| 360 | 360 | /** |
| 361 | 361 | * Returns the container's tmp directory. |
| 362 | 362 | * |
| 363 | - * @param \AppserverIo\Appserver\Core\Api\Node\ContainerInterface $containerNode The container to return the temporary directory for |
|
| 363 | + * @param ContainerNodeInterface $containerNode The container to return the temporary directory for |
|
| 364 | 364 | * @param string $relativePathToAppend A relative path to append |
| 365 | 365 | * |
| 366 | 366 | * @return string |
@@ -377,7 +377,7 @@ discard block |
||
| 377 | 377 | /** |
| 378 | 378 | * Returns the container's deploy directory. |
| 379 | 379 | * |
| 380 | - * @param \AppserverIo\Appserver\Core\Api\Node\ContainerInterface $containerNode The container to return the temporary directory for |
|
| 380 | + * @param ContainerNodeInterface $containerNode The container to return the temporary directory for |
|
| 381 | 381 | * @param string $relativePathToAppend A relative path to append |
| 382 | 382 | * |
| 383 | 383 | * @return string |
@@ -394,7 +394,7 @@ discard block |
||
| 394 | 394 | /** |
| 395 | 395 | * Returns the container's webapps directory. |
| 396 | 396 | * |
| 397 | - * @param \AppserverIo\Appserver\Core\Api\Node\ContainerInterface $containerNode The container to return the temporary directory for |
|
| 397 | + * @param ContainerNodeInterface $containerNode The container to return the temporary directory for |
|
| 398 | 398 | * @param string $relativePathToAppend A relative path to append |
| 399 | 399 | * |
| 400 | 400 | * @return string The web application directory |
@@ -79,7 +79,7 @@ |
||
| 79 | 79 | * (non-PHPdoc) |
| 80 | 80 | * |
| 81 | 81 | * @param string $className The fully qualified class name to return the instance for |
| 82 | - * @param array $args Arguments to pass to the constructor of the instance |
|
| 82 | + * @param \AppserverIo\Configuration\Interfaces\ConfigurationInterface[] $args Arguments to pass to the constructor of the instance |
|
| 83 | 83 | * |
| 84 | 84 | * @return InitialContext |
| 85 | 85 | * @see InitialContext::newInstance() |
@@ -195,7 +195,7 @@ discard block |
||
| 195 | 195 | * Soaks the passed archive into from a location in the filesystem |
| 196 | 196 | * to the deploy directory. |
| 197 | 197 | * |
| 198 | - * @param \AppserverIo\Appserver\Core\Api\Node\ContainerInterface $containerNode The container the archive is bound to |
|
| 198 | + * @param ContainerNodeInterface $containerNode The container the archive is bound to |
|
| 199 | 199 | * @param \SplFileInfo $archive The archive to soak |
| 200 | 200 | * |
| 201 | 201 | * @return void |
@@ -210,7 +210,7 @@ discard block |
||
| 210 | 210 | * Adds the .dodeploy flag file in the deploy folder, therefore the |
| 211 | 211 | * app will be deployed with the next restart. |
| 212 | 212 | * |
| 213 | - * @param \AppserverIo\Appserver\Core\Api\Node\ContainerInterface $containerNode The container the app is bound to |
|
| 213 | + * @param ContainerNodeInterface $containerNode The container the app is bound to |
|
| 214 | 214 | * @param \AppserverIo\Configuration\Interfaces\NodeInterface $appNode The application node object |
| 215 | 215 | * |
| 216 | 216 | * @return void |
@@ -232,7 +232,7 @@ discard block |
||
| 232 | 232 | * Removes the .deployed flag file from the deploy folder, therefore the |
| 233 | 233 | * app will be undeployed with the next restart. |
| 234 | 234 | * |
| 235 | - * @param \AppserverIo\Appserver\Core\Api\Node\ContainerInterface $containerNode The container the app is bound to |
|
| 235 | + * @param ContainerNodeInterface $containerNode The container the app is bound to |
|
| 236 | 236 | * @param string $uuid UUID of the application to delete |
| 237 | 237 | * |
| 238 | 238 | * @return void |
@@ -39,7 +39,7 @@ |
||
| 39 | 39 | * |
| 40 | 40 | * @param \AppserverIo\Configuration\Interfaces\ConfigurationInterface $configuration The configuration node to normalize |
| 41 | 41 | * |
| 42 | - * @return \stdClass The normalized configuration node |
|
| 42 | + * @return \AppserverIo\Appserver\Core\InitialContext The normalized configuration node |
|
| 43 | 43 | * @see \AppserverIo\Appserver\Core\Api\NormalizerInterface::normalize() |
| 44 | 44 | */ |
| 45 | 45 | public function normalize(ConfigurationInterface $configuration) |
@@ -54,7 +54,7 @@ |
||
| 54 | 54 | /** |
| 55 | 55 | * Initializes the node with the passed values. |
| 56 | 56 | * |
| 57 | - * @param \AppserverIo\Appserver\Core\Api\Node\NodeValueInterface $description The description information |
|
| 57 | + * @param NodeValueInterface $description The description information |
|
| 58 | 58 | * @param array $roleNames The array with the role names |
| 59 | 59 | */ |
| 60 | 60 | public function __construct( |
@@ -52,7 +52,7 @@ |
||
| 52 | 52 | /** |
| 53 | 53 | * Returns the application server's default runlevel. |
| 54 | 54 | * |
| 55 | - * @return array The application server's default runlevel |
|
| 55 | + * @return string The application server's default runlevel |
|
| 56 | 56 | */ |
| 57 | 57 | public function getDefaultRunlevel() |
| 58 | 58 | { |
@@ -65,7 +65,7 @@ |
||
| 65 | 65 | /** |
| 66 | 66 | * Return's the parameter value information. |
| 67 | 67 | * |
| 68 | - * @return \AppserverIo\Appserver\Core\Api\Node\ParamNameNode The parameter value information |
|
| 68 | + * @return ParamValueNode The parameter value information |
|
| 69 | 69 | */ |
| 70 | 70 | public function getParamValue() |
| 71 | 71 | { |
@@ -175,7 +175,7 @@ discard block |
||
| 175 | 175 | /** |
| 176 | 176 | * Returns the flag to run Sqlite in memory (mutually exclusive with the path option). |
| 177 | 177 | * |
| 178 | - * @return \AppserverIo\Appserver\Core\Api\Node\PathNode The flag to run Sqlite in memory |
|
| 178 | + * @return MemoryNode The flag to run Sqlite in memory |
|
| 179 | 179 | */ |
| 180 | 180 | public function getMemory() |
| 181 | 181 | { |
@@ -215,7 +215,7 @@ discard block |
||
| 215 | 215 | /** |
| 216 | 216 | * Returns the database driver options. |
| 217 | 217 | * |
| 218 | - * @return \AppserverIo\Appserver\Core\Api\Node\CharsetNode The database driver options |
|
| 218 | + * @return DriverOptionsNode The database driver options |
|
| 219 | 219 | */ |
| 220 | 220 | public function getDriverOptions() |
| 221 | 221 | { |
@@ -225,7 +225,7 @@ discard block |
||
| 225 | 225 | /** |
| 226 | 226 | * Returns the name of the socket used to connect to the database. |
| 227 | 227 | * |
| 228 | - * @return \AppserverIo\Appserver\Core\Api\Node\CharsetNode The name of the socket |
|
| 228 | + * @return UnixSocketNode The name of the socket |
|
| 229 | 229 | */ |
| 230 | 230 | public function getUnixSocket() |
| 231 | 231 | { |