@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | /** |
142 | 142 | * Returns the flag that backups should be created. |
143 | 143 | * |
144 | - * @return boolean The flag to create backups |
|
144 | + * @return string The flag to create backups |
|
145 | 145 | */ |
146 | 146 | public function isCreateBackups() |
147 | 147 | { |
@@ -151,7 +151,7 @@ discard block |
||
151 | 151 | /** |
152 | 152 | * Returns the flag that backups should be restored. |
153 | 153 | * |
154 | - * @return boolean The flag to restore backups |
|
154 | + * @return string The flag to restore backups |
|
155 | 155 | */ |
156 | 156 | public function isRestoreBackups() |
157 | 157 | { |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | /** |
54 | 54 | * Return's the message queue's receiver type. |
55 | 55 | * |
56 | - * @return string|null The receiver type |
|
56 | + * @return string The receiver type |
|
57 | 57 | */ |
58 | 58 | public function getType() |
59 | 59 | { |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | /** |
64 | 64 | * Return's the message queue's destination information. |
65 | 65 | * |
66 | - * @return \AppserverIo\Description\Api\Node\ValueNode The message queue destination information |
|
66 | + * @return DatabaseNode The message queue destination information |
|
67 | 67 | */ |
68 | 68 | public function getDestination() |
69 | 69 | { |
@@ -155,7 +155,7 @@ discard block |
||
155 | 155 | /** |
156 | 156 | * Returns the entity manager's datasource configuration. |
157 | 157 | * |
158 | - * @return AppserverIo\Appserver\Core\Api\Node\DatasourceNode The entity manager's datasource configuration |
|
158 | + * @return DatasourceNode The entity manager's datasource configuration |
|
159 | 159 | */ |
160 | 160 | public function getDatasource() |
161 | 161 | { |
@@ -165,7 +165,7 @@ discard block |
||
165 | 165 | /** |
166 | 166 | * Returns the entity manager's metadata configuration. |
167 | 167 | * |
168 | - * @return AppserverIo\Appserver\Core\Api\Node\MetadataConfigurationNode The entity manager's metadata configuration |
|
168 | + * @return DatasourceNode The entity manager's metadata configuration |
|
169 | 169 | */ |
170 | 170 | public function getMetadataConfiguration() |
171 | 171 | { |
@@ -62,8 +62,8 @@ |
||
62 | 62 | /** |
63 | 63 | * Initializes the node with the passed values. |
64 | 64 | * |
65 | - * @param \AppserverIo\Appserver\Core\Api\Node\NodeValueInterface $displayName The display name information |
|
66 | - * @param array $webResourceCollections The array with the web resource collection information |
|
65 | + * @param NodeValueInterface $displayName The display name information |
|
66 | + * @param WebResourceCollectionNode[] $webResourceCollections The array with the web resource collection information |
|
67 | 67 | * @param \AppserverIo\Appserver\Core\Api\Node\AuthConstraintNodeInterface $authConstraint The auth constraint information |
68 | 68 | */ |
69 | 69 | public function __construct( |
@@ -203,7 +203,7 @@ |
||
203 | 203 | /** |
204 | 204 | * Return's the session configuration information. |
205 | 205 | * |
206 | - * @return \AppserverIo\Appserver\Core\Api\Node\DisplayNameNode The session configuration |
|
206 | + * @return SessionConfigNode The session configuration |
|
207 | 207 | */ |
208 | 208 | public function getSessionConfig() |
209 | 209 | { |
@@ -78,10 +78,10 @@ |
||
78 | 78 | /** |
79 | 79 | * Initializes the node with the passed values. |
80 | 80 | * |
81 | - * @param \AppserverIo\Appserver\Core\Api\Node\NodeValueInterface $webResourceName The web resource name information |
|
82 | - * @param \AppserverIo\Appserver\Core\Api\Node\NodeValueInterface $description The description information |
|
83 | - * @param array $urlPatterns The array with the URL pattern information |
|
84 | - * @param array $httpMethods The array with the HTTP method information |
|
81 | + * @param NodeValueInterface $webResourceName The web resource name information |
|
82 | + * @param NodeValueInterface $description The description information |
|
83 | + * @param UrlPatternNode[] $urlPatterns The array with the URL pattern information |
|
84 | + * @param HttpMethodNode[] $httpMethods The array with the HTTP method information |
|
85 | 85 | * @param array $httpMethodOmissions The array with the HTTP method omission information |
86 | 86 | */ |
87 | 87 | public function __construct( |
@@ -40,7 +40,7 @@ |
||
40 | 40 | * |
41 | 41 | * @param \AppserverIo\Configuration\Interfaces\ConfigurationInterface $configuration The configuration node to normalize |
42 | 42 | * |
43 | - * @return \stdClass The normalized configuration node |
|
43 | + * @return \AppserverIo\Appserver\Core\InitialContext The normalized configuration node |
|
44 | 44 | */ |
45 | 45 | public function normalize(ConfigurationInterface $configuration) |
46 | 46 | { |
@@ -40,7 +40,7 @@ |
||
40 | 40 | * |
41 | 41 | * @param \AppserverIo\Configuration\Interfaces\ConfigurationInterface $configuration The configuration node to normalize recursive |
42 | 42 | * |
43 | - * @return \stdClass The normalized configuration node |
|
43 | + * @return \AppserverIo\Appserver\Core\InitialContext The normalized configuration node |
|
44 | 44 | */ |
45 | 45 | public function normalize(ConfigurationInterface $configuration) |
46 | 46 | { |
@@ -23,7 +23,6 @@ |
||
23 | 23 | use AppserverIo\Appserver\Core\Api\Node\CronNode; |
24 | 24 | use AppserverIo\Appserver\Core\Utilities\AppEnvironmentHelper; |
25 | 25 | use AppserverIo\Configuration\ConfigurationException; |
26 | -use AppserverIo\Properties\Properties; |
|
27 | 26 | use AppserverIo\Appserver\Core\Utilities\SystemPropertyKeys; |
28 | 27 | |
29 | 28 | /** |