Merge changes Id68de4e3,Id4b3c97f
[yangtools.git] / yang / yang-binding / src / main / java / org / opendaylight / yangtools / yang / binding / YangModuleInfo.java
index 90dc06b33c2dbabe84548cee37f41c1e902359c1..be32812e358a8f3431f5a8cd84ab0e8726c45f26 100644 (file)
@@ -7,36 +7,36 @@
  */
 package org.opendaylight.yangtools.yang.binding;
 
-import java.io.IOException;
 import java.io.InputStream;
-
-import com.google.common.collect.ImmutableSet;
+import java.io.IOException;
+import java.util.Set;
 
 public interface YangModuleInfo {
 
     /**
      * Returns yang module name
-     * 
+     *
      * @return
      */
     String getName();
-    
+
     /**
-     * 
+     *
      * Returns revision of yang module.
-     * 
+     *
      * @return
      */
     String getRevision();
-    
+
     /**
      * Returns XML namespace associated to the YANG module
-     * 
+     *
      * @return XML namespace associated to the YANG module.
      */
     String getNamespace();
-    
+
     InputStream getModuleSourceStream() throws IOException;
-    
-    ImmutableSet<YangModuleInfo> getImportedModules();
+
+    Set<YangModuleInfo> getImportedModules();
+
 }