BrightSide Workbench Full Report + Source Code
org.turro.ws.WsServerPK Class Reference
Inheritance diagram for org.turro.ws.WsServerPK:
Collaboration diagram for org.turro.ws.WsServerPK:

Public Member Functions

int hashCode ()
 
boolean equals (Object obj)
 

Static Public Member Functions

static WsServerPK from (String serverDomain, String service)
 

Detailed Description

Author
Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g

Definition at line 28 of file WsServerPK.java.

Member Function Documentation

◆ equals()

boolean org.turro.ws.WsServerPK.equals ( Object  obj)

Definition at line 49 of file WsServerPK.java.

49  {
50  if (this == obj) {
51  return true;
52  }
53  if (obj == null) {
54  return false;
55  }
56  if (getClass() != obj.getClass()) {
57  return false;
58  }
59  final WsServerPK other = (WsServerPK) obj;
60  if (!Objects.equals(this.serverDomain, other.serverDomain)) {
61  return false;
62  }
63  return Objects.equals(this.service, other.service);
64  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ from()

static WsServerPK org.turro.ws.WsServerPK.from ( String  serverDomain,
String  service 
)
static

Definition at line 33 of file WsServerPK.java.

33  {
34  WsServerPK id = new WsServerPK();
35  id.serverDomain = serverDomain;
36  id.service = service;
37  return id;
38  }
Here is the caller graph for this function:

◆ hashCode()

int org.turro.ws.WsServerPK.hashCode ( )

Definition at line 41 of file WsServerPK.java.

41  {
42  int hash = 3;
43  hash = 41 * hash + Objects.hashCode(this.serverDomain);
44  hash = 41 * hash + Objects.hashCode(this.service);
45  return hash;
46  }

The documentation for this class was generated from the following file: