19 package org.turro.elephant.entities.db;
21 import java.io.Serializable;
22 import java.util.Objects;
28 public class SkillPK implements Serializable {
31 private String entityPath;
46 this.entityPath = entityPath;
52 hash = 97 * hash + Objects.hashCode(this.skill);
53 hash = 97 * hash + Objects.hashCode(this.entityPath);
65 if (getClass() != obj.getClass()) {
69 if (!Objects.equals(
this.skill, other.skill)) {
72 if (!Objects.equals(
this.entityPath, other.entityPath)) {
void setSkill(String skill)
void setEntityPath(String entityPath)
boolean equals(Object obj)