19 package org.turro.contacts.social;
21 import java.util.Objects;
22 import org.turro.i18n.I_;
23 import org.turro.security.SecurityGroupType;
24 import org.turro.util.Comparison;
32 private final String name, key;
36 this.name =
I_.
get(name);
55 return Comparison.ascendant()
57 .compare(name, o.name)
64 hash = 31 * hash + Objects.hashCode(this.key);
76 if (getClass() != obj.getClass()) {
80 return Objects.
equals(this.key, other.key);
static String get(String msg)