/* * Hibernate, Relational Persistence for Idiomatic Java * * License: GNU Lesser General Public License (LGPL), version 2.1 or later. * See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>. */ package org.hibernate.boot.archive.scan.internal; import org.hibernate.boot.archive.spi.InputStreamAccess; import org.hibernate.boot.archive.scan.spi.PackageDescriptor; /** * @author Steve Ebersole */ public class PackageDescriptorImpl implements PackageDescriptor { private final String name; private final InputStreamAccess streamAccess; public PackageDescriptorImpl(String name, InputStreamAccess streamAccess) { this.name = name; this.streamAccess = streamAccess; } @Override public String getName() { return name; } @Override public InputStreamAccess getStreamAccess() { return streamAccess; } @Override public boolean equals(Object o) { if ( this == o ) { return true; } if ( o == null || getClass() != o.getClass() ) { return false; } PackageDescriptorImpl that = (PackageDescriptorImpl) o; return name.equals( that.name ); } @Override public int hashCode() { return name.hashCode(); } }