in components/camel-docker/src/main/java/org/apache/camel/component/docker/DockerClientProfile.java [199:309]
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
DockerClientProfile other = (DockerClientProfile) obj;
if (certPath == null) {
if (other.certPath != null) {
return false;
}
} else if (!certPath.equals(other.certPath)) {
return false;
}
if (email == null) {
if (other.email != null) {
return false;
}
} else if (!email.equals(other.email)) {
return false;
}
if (socket == null) {
if (other.socket != null) {
return false;
}
} else if (!socket.equals(other.socket)) {
return false;
}
if (host == null) {
if (other.host != null) {
return false;
}
} else if (!host.equals(other.host)) {
return false;
}
if (tlsVerify == null) {
if (other.tlsVerify != null) {
return false;
}
} else if (!tlsVerify.equals(other.tlsVerify)) {
return false;
}
if (maxPerRouteConnections == null) {
if (other.maxPerRouteConnections != null) {
return false;
}
} else if (!maxPerRouteConnections.equals(other.maxPerRouteConnections)) {
return false;
}
if (maxTotalConnections == null) {
if (other.maxTotalConnections != null) {
return false;
}
} else if (!maxTotalConnections.equals(other.maxTotalConnections)) {
return false;
}
if (password == null) {
if (other.password != null) {
return false;
}
} else if (!password.equals(other.password)) {
return false;
}
if (port == null) {
if (other.port != null) {
return false;
}
} else if (!port.equals(other.port)) {
return false;
}
if (requestTimeout == null) {
if (other.requestTimeout != null) {
return false;
}
} else if (!requestTimeout.equals(other.requestTimeout)) {
return false;
}
if (secure == null) {
if (other.secure != null) {
return false;
}
} else if (!secure.equals(other.secure)) {
return false;
}
if (serverAddress == null) {
if (other.serverAddress != null) {
return false;
}
} else if (!serverAddress.equals(other.serverAddress)) {
return false;
}
if (username == null) {
if (other.username != null) {
return false;
}
} else if (!username.equals(other.username)) {
return false;
}
if (cmdExecFactory == null) {
if (other.cmdExecFactory != null) {
return false;
}
} else if (!cmdExecFactory.equals(other.cmdExecFactory)) {
return false;
}
return true;
}