Skip to content

Commit

Permalink
Fix javadoc issues for the release
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanouii committed May 24, 2022
1 parent 0a7bb49 commit a708f0c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
4 changes: 4 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -598,10 +598,12 @@
<configuration>
<quiet>true</quiet>
<additionalparam>-Xdoclint:none</additionalparam>
<source>8</source>
<links>
<link>http://download.oracle.com/javaee/7/api/</link>
<link>http://download.oracle.com/javase/8/docs/api/</link>
<link>http://myfaces.apache.org/core22/myfaces-api/apidocs/</link>
<link>http://docs.oracle.com/javase/8/docs/api/</link>
</links>
</configuration>
</plugin>
Expand Down Expand Up @@ -636,10 +638,12 @@
<configuration>
<quiet>true</quiet>
<additionalparam>-Xdoclint:none</additionalparam>
<source>8</source>
<links>
<link>http://download.oracle.com/javaee/7/api/</link>
<link>http://download.oracle.com/javase/8/docs/api/</link>
<link>http://myfaces.apache.org/core22/myfaces-api/apidocs/</link>
<link>http://docs.oracle.com/javase/8/docs/api/</link>
</links>
</configuration>
<reportSets>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/**
* SPI interface to implement the proxy defining logic.
* It enables to switch from unsafe to classloader logic for instance for java >= 9.
* It enables to switch from unsafe to classloader logic for instance for java @gt;= 9.
*/
public interface DefiningClassService
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public interface ResourceInjectionService
* For example;
* <p>
* <code>
* {@link @Produces} &#064;MyPersistenceContext PersistenceContext EntityManager manager;
* @javax.enterprise.inject.Produces &#064;MyPersistenceContext PersistenceContext EntityManager manager;
* </code>
* </p>
* <p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@
* plugin lifecycle like {@code #startUp()} and {@code #shutDown()}
* </li>
* <li>
* injection execution will be called every time a been get's
* injection execution will be called every time a been gets
* injected like {@code #injectResource(Type, Annotation[])}
* </li>
* </ol>
* @see PluginLoader for documentation of the whole mechanism
* see org.apache.webbeans.plugins.PluginLoader for documentation of the whole mechanism
*/
public interface OpenWebBeansPlugin
{
Expand All @@ -47,7 +47,6 @@ public interface OpenWebBeansPlugin
* At shutdown, the plugin must release all locked resources.
* This is called once before the very plugin gets destroyed.
* This is usually the case when the WebApplication gets stopped.
* @throws WebBeansConfigurationException
*/
void shutDown();

Expand All @@ -56,7 +55,6 @@ public interface OpenWebBeansPlugin
* Make sure that the given class is ok for simple web bean conditions,
* otherwise throw a {@code WebBeansConfigurationException}
* @param clazz the class to check
* @throws WebBeansConfigurationException if the given clazz cannot be used as simple web bean.
*/
void isManagedBean(Class<?> clazz);

Expand Down

0 comments on commit a708f0c

Please sign in to comment.