org.kt3k.gradle.plugin.coveralls.domain.ProxyInfo.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of coveralls-gradle-plugin Show documentation
Show all versions of coveralls-gradle-plugin Show documentation
This plugin helps to upload coverage data to Coveralls
package org.kt3k.gradle.plugin.coveralls.domain
import groovy.transform.TupleConstructor
@TupleConstructor
class ProxyInfo {
String httpsProxyHost
Integer httpsProxyPort
boolean equals(o) {
if (this.is(o)) return true
if (getClass() != o.class) return false
ProxyInfo proxyInfo = (ProxyInfo) o
if (httpsProxyHost != proxyInfo.httpsProxyHost) return false
if (httpsProxyPort != proxyInfo.httpsProxyPort) return false
return true
}
int hashCode() {
int result
result = 31 * result + (httpsProxyHost != null ? httpsProxyHost.hashCode() : 0)
result = 31 * result + (httpsProxyPort != null ? httpsProxyPort.hashCode() : 0)
return result
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy