19 package org.turro.member.db.entities;
21 import java.io.Serializable;
22 import java.util.Objects;
30 private String serverDomain;
31 private String projectId;
38 this.serverDomain = serverDomain;
46 this.projectId = projectId;
52 hash = 79 * hash + Objects.hashCode(this.serverDomain);
53 hash = 79 * hash + Objects.hashCode(this.projectId);
65 if (getClass() != obj.getClass()) {
69 if (!Objects.equals(
this.serverDomain, other.serverDomain)) {
72 return Objects.
equals(this.projectId, other.projectId);
static AxProjectCategoryPK from(AxProjectCategory pc)
boolean equals(Object obj)
void setProjectId(String projectId)
void setServerDomain(String serverDomain)