Class LPVSQueue

java.lang.Object
com.lpvs.entity.LPVSQueue
All Implemented Interfaces:
Serializable

@Entity public class LPVSQueue extends Object implements Serializable
Represents an item in the LPVS queue for processing pull requests. This class is mapped to the "lpvs_queue" table in the "lpvs" schema.
See Also:
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Checks if this queue item is equal to another object based on specific criteria.
    int
    Generates a hash code for the queue item based on specific attributes.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • LPVSQueue

      public LPVSQueue()
  • Method Details

    • equals

      public boolean equals(Object o)
      Checks if this queue item is equal to another object based on specific criteria.
      Overrides:
      equals in class Object
      Parameters:
      o - The object to compare with.
      Returns:
      True if the objects are equal, false otherwise.
    • hashCode

      public int hashCode()
      Generates a hash code for the queue item based on specific attributes.
      Overrides:
      hashCode in class Object
      Returns:
      The hash code for the queue item.