Skip to content

Commit

Permalink
Issue #24 address review comment about including fully qualified clas…
Browse files Browse the repository at this point in the history
…s names in JavaDoc
  • Loading branch information
njr-11 committed Oct 29, 2018
1 parent b8939a7 commit 17c83d1
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 10 deletions.
Expand Up @@ -34,8 +34,8 @@
* </code></pre>
*
* <p>A <code>ManagedExecutor</code> must fail to inject, raising
* <code>DeploymentException</code> on application startup,
* if the direct or indirect
* {@link javax.enterprise.inject.spi.DeploymentException DeploymentException}
* on application startup, if the direct or indirect
* {@link org.eclipse.microprofile.concurrent.spi.ThreadContextProvider#getPrerequisites prerequisites}
* of a <code>ThreadContextProvider</code> are unsatisfied,
* or a provider has itself as a direct or indirect prerequisite,
Expand Down Expand Up @@ -64,7 +64,8 @@
* inclusion of the prerequisites, even if not explicitly specified.</p>
*
* <p>A <code>ManagedExecutor</code> must fail to inject, raising
* <code>DefinitionException</code> on application startup,
* {@link javax.enterprise.inject.spi.DefinitionException DefinitionException}
* on application startup,
* if a context type specified within this set is unavailable
* or if the {@link #propagated} set includes one or more of the
* same types as this set.</p>
Expand Down Expand Up @@ -97,7 +98,8 @@
* action or task.</p>
*
* <p>A <code>ManagedExecutor</code> must fail to inject, raising
* <code>DefinitionException</code> on application startup,
* {@link javax.enterprise.inject.spi.DefinitionException DefinitionException}
* on application startup,
* if a context type specified within this set is unavailable
* or if the {@link #cleared} set includes one or more of the
* same types as this set.</p>
Expand All @@ -116,7 +118,8 @@
* although practically, resource constraints of the system will apply.</p>
*
* <p>A <code>ManagedExecutor</code> must fail to inject, raising
* <code>DefinitionException</code> on application startup, if the
* {@link javax.enterprise.inject.spi.DefinitionException DefinitionException}
* on application startup, if the
* <code>maxAsync</code> value is 0 or less than -1.
*/
int maxAsync() default -1;
Expand All @@ -130,7 +133,8 @@
* although practically, resource constraints of the system will apply.</p>
*
* <p>A <code>ManagedExecutor</code> must fail to inject, raising
* <code>DefinitionException</code> on application startup, if the
* {@link javax.enterprise.inject.spi.DefinitionException DefinitionException}
* on application startup, if the
* <code>maxQueued</code> value is 0 or less than -1.
*/
int maxQueued() default -1;
Expand Down
Expand Up @@ -34,7 +34,8 @@
* </code></pre>
*
* <p>A <code>ThreadContext</code> must fail to inject, raising
* <code>DeploymentException</code> on application startup,
* {@link javax.enterprise.inject.spi.DeploymentException DeploymentException}
* on application startup,
* if the direct or indirect
* {@link org.eclipse.microprofile.concurrent.spi.ThreadContextProvider#getPrerequisites prerequisites}
* of a <code>ThreadContextProvider</code> are unsatisfied,
Expand Down Expand Up @@ -64,7 +65,8 @@
* inclusion of the prerequisites, even if not explicitly specified.</p>
*
* <p>A <code>ThreadContext</code> must fail to inject, raising
* <code>DefinitionException</code> on application startup,
* {@link javax.enterprise.inject.spi.DefinitionException DefinitionException}
* on application startup,
* if a context type specified within this set is unavailable
* or if the {@link #value propagated} and/or {@link #unchanged} set
* includes one or more of the same types as this set.</p>
Expand Down Expand Up @@ -97,7 +99,8 @@
* for the duration of the action or task.</p>
*
* <p>A <code>ThreadContext</code> must fail to inject, raising
* <code>DefinitionException</code> on application startup,
* {@link javax.enterprise.inject.spi.DefinitionException DefinitionException}
* on application startup,
* if a context type specified within this set is unavailable
* or if the {@link #cleared} and/or {@link #unchanged} set
* includes one or more of the same types as this set.</p>
Expand Down Expand Up @@ -139,7 +142,8 @@
* considered 'unchanged' as well, even if not explicitly specified.</p>
*
* <p>A <code>ThreadContext</code> must fail to inject, raising
* <code>DefinitionException</code> on application startup,
* {@link javax.enterprise.inject.spi.DefinitionException DefinitionException}
* on application startup,
* if a context type specified within this set is unavailable
* or if the {@link #cleared} and/or {@link #value propagated} set
* includes one or more of the same types as this set.</p>
Expand Down

0 comments on commit 17c83d1

Please sign in to comment.