- Author
- Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g
Definition at line 28 of file WsServerPK.java.
◆ equals()
boolean org.turro.ws.WsServerPK.equals |
( |
Object |
obj | ) |
|
Definition at line 49 of file WsServerPK.java.
56 if (getClass() != obj.getClass()) {
59 final WsServerPK other = (WsServerPK) obj;
60 if (!Objects.equals(
this.serverDomain, other.serverDomain)) {
63 return Objects.equals(this.service, other.service);
◆ from()
static WsServerPK org.turro.ws.WsServerPK.from |
( |
String |
serverDomain, |
|
|
String |
service |
|
) |
| |
|
static |
Definition at line 33 of file WsServerPK.java.
34 WsServerPK
id =
new WsServerPK();
35 id.serverDomain = serverDomain;
◆ hashCode()
int org.turro.ws.WsServerPK.hashCode |
( |
| ) |
|
Definition at line 41 of file WsServerPK.java.
43 hash = 41 * hash + Objects.hashCode(this.serverDomain);
44 hash = 41 * hash + Objects.hashCode(this.service);
The documentation for this class was generated from the following file: