Fix javadocs and enable doclint
[controller.git] / opendaylight / config / config-api / src / main / java / org / opendaylight / controller / config / api / annotations / RequireInterface.java
index 3584776bb3e54c343541f3dca0b77c3855c2e711..0e8f6fd7364e79b51c04f33335bbcf6e8a4abb70 100644 (file)
@@ -12,23 +12,20 @@ import java.lang.annotation.Retention;
 import java.lang.annotation.RetentionPolicy;
 import java.lang.annotation.Target;
 
-import javax.management.ObjectName;
-
 /**
  * Indicates what service interface is expected to be obtained as a dependency
  * 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)