Add ability to get yang sources from SchemaContext.
[yangtools.git] / code-generator / binding-generator-spi / src / main / java / org / opendaylight / yangtools / sal / binding / generator / spi / YANGModuleIdentifier.java
diff --git a/code-generator/binding-generator-spi/src/main/java/org/opendaylight/yangtools/sal/binding/generator/spi/YANGModuleIdentifier.java b/code-generator/binding-generator-spi/src/main/java/org/opendaylight/yangtools/sal/binding/generator/spi/YANGModuleIdentifier.java
deleted file mode 100644 (file)
index d948cde..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
- *
- * This program and the accompanying materials are made available under the
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,
- * and is available at http://www.eclipse.org/legal/epl-v10.html
- */
-package org.opendaylight.yangtools.sal.binding.generator.spi;
-
-import java.net.URI;
-import java.util.Date;
-
-
-public class YANGModuleIdentifier {
-    private String name;
-    private URI namespace;
-    private Date revision;
-
-    /**
-     * Returns name.
-     * 
-     * @return string with name
-     */
-    public String getName() {
-        return this.name;
-    }
-
-    /**
-     * Returns URI namespace.
-     * 
-     * @return URI with namespace
-     */
-    public URI getNamespace() {
-        return this.namespace;
-    }
-
-    /**
-     * Returns the revision date.
-     * 
-     * @return date of revision
-     */
-    public Date getRevision() {
-        return this.revision;
-    }
-}