Promote plugin-generator-api
[yangtools.git] / plugin / plugin-generator-api / src / main / java / org / opendaylight / yangtools / plugin / generator / api / ModuleResourceResolver.java
index c97d03e31f476507b353617db31a1af826801c5d..963ca9d1a8a66900f5d405c2123d77b728536f3c 100644 (file)
@@ -7,7 +7,6 @@
  */
 package org.opendaylight.yangtools.plugin.generator.api;
 
-import com.google.common.annotations.Beta;
 import java.util.Optional;
 import org.opendaylight.yangtools.yang.model.api.ModuleLike;
 import org.opendaylight.yangtools.yang.model.repo.api.SchemaSourceRepresentation;
@@ -17,7 +16,6 @@ import org.opendaylight.yangtools.yang.model.repo.api.YangTextSchemaSource;
  * An SPI-level interface to find the schema source for a particular YANG module, as packaged in the final artifact.
  * The module must be part of the current resolution context.
  */
-@Beta
 public interface ModuleResourceResolver {
     /**
      * Find the path of the packaged resource which corresponds to the specified module in the specified representation.
@@ -25,7 +23,7 @@ public interface ModuleResourceResolver {
      * @param module Requested module
      * @param representation Requested representation
      * @return Path to packaged resource
-     * @throws NullPointerException if any argument is null
+     * @throws NullPointerException if any argument is {@code null}
      * @throws IllegalArgumentException if the requested representation is not supported by this resolver
      */
     Optional<String> findModuleResourcePath(ModuleLike module,