All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.rapid7.container.analyzer.docker.model.image.PackageId Maven / Gradle / Ivy

There is a newer version: 0.2.26
Show newest version
package com.rapid7.container.analyzer.docker.model.image;

public class PackageId extends TypeSafeLongId {

  public PackageId(long id) {
    super(id);
  }

  @Override
  public int hashCode() {
    return super.hashCode();
  }

  @Override
  public boolean equals(Object obj) {
    if (obj == this)
      return true;
    else if (obj instanceof PackageId)
      return super.equals(obj);
    else
      return false;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy