Revert "Added support for parsing submodules & added dependency utility parser"
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / util / ModuleImportImpl.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yangtools.yang.parser.util;
9
10 import java.util.Date;
11
12 import org.opendaylight.yangtools.yang.model.api.ModuleImport;
13
14 public final class ModuleImportImpl implements ModuleImport {
15     private final String moduleName;
16     private final Date revision;
17     private final String prefix;
18
19     public ModuleImportImpl(final String moduleName, final Date revision, final String prefix) {
20         this.moduleName = moduleName;
21         this.revision = revision;
22         this.prefix = prefix;
23     }
24
25     @Override
26     public String getModuleName() {
27         return moduleName;
28     }
29
30     @Override
31     public Date getRevision() {
32         return revision;
33     }
34
35     @Override
36     public String getPrefix() {
37         return prefix;
38     }
39
40     @Override
41     public int hashCode() {
42         final int prime = 31;
43         int result = 1;
44         result = prime * result + ((moduleName == null) ? 0 : moduleName.hashCode());
45         result = prime * result + ((revision == null) ? 0 : revision.hashCode());
46         result = prime * result + ((prefix == null) ? 0 : prefix.hashCode());
47         return result;
48     }
49
50     @Override
51     public boolean equals(Object obj) {
52         if (this == obj) {
53             return true;
54         }
55         if (obj == null) {
56             return false;
57         }
58         if (getClass() != obj.getClass()) {
59             return false;
60         }
61         ModuleImport other = (ModuleImport) obj;
62         if (getModuleName() == null) {
63             if (other.getModuleName() != null) {
64                 return false;
65             }
66         } else if (!getModuleName().equals(other.getModuleName())) {
67             return false;
68         }
69         if (getRevision() == null) {
70             if (other.getRevision() != null) {
71                 return false;
72             }
73         } else if (!getRevision().equals(other.getRevision())) {
74             return false;
75         }
76         if (getPrefix() == null) {
77             if (other.getPrefix() != null) {
78                 return false;
79             }
80         } else if (!getPrefix().equals(other.getPrefix())) {
81             return false;
82         }
83         return true;
84     }
85
86     @Override
87     public String toString() {
88         return "ModuleImport[moduleName=" + moduleName + ", revision=" + revision + ", prefix=" + prefix + "]";
89     }
90
91 }
92