Fix javadocs and enable doclint
[controller.git] / opendaylight / config / config-api / src / main / java / org / opendaylight / controller / config / api / annotations / RequireInterface.java
index aacafad74fbab1e9e71d989dfbf57306af5bd57b..0e8f6fd7364e79b51c04f33335bbcf6e8a4abb70 100644 (file)
@@ -17,16 +17,15 @@ import java.lang.annotation.Target;
  * of a module. This annotation must be present for each dependency setter in
  * {@link org.opendaylight.controller.config.spi.Module} M(X)Bean interface.
  * Together with name of dependent bean the {@link #value()} will be used to get
- * {@link ObjectName} of dependency.
+ * {@link javax.management.ObjectName} of dependency.
  *
  * <p>
  * Example:<br>
  *
  * <code>
- *
- * @RequireInterface(value = ThreadPoolServiceInterface.class, optional =
- *                         false)<br/> void setThreadPool(ObjectName on);
- *                         </code>
+ * {@literal @}RequireInterface(value = ThreadPoolServiceInterface.class, optional = false)<br>
+ * void setThreadPool(ObjectName on);
+ * </code>
  */
 @Retention(RetentionPolicy.RUNTIME)
 @Target(ElementType.METHOD)