List of usage examples for org.apache.commons.httpclient.util LangUtils hashCode
public static int hashCode(final int seed, final boolean b)
From source file:com.eviware.soapui.impl.wsdl.support.http.SoapUIHostConfiguration.java
public synchronized int hashCode() { int hash = super.hashCode(); hash = LangUtils.hashCode(hash, getParams().getParameter(SOAPUI_SSL_CONFIG)); return hash;//from w w w . j a v a 2s . c o m }
From source file:com.gargoylesoftware.htmlunit.util.NameValuePair.java
/** * {@inheritDoc}/*ww w.j a v a 2 s. co m*/ */ @Override public int hashCode() { int hash = LangUtils.HASH_SEED; hash = LangUtils.hashCode(hash, name_); hash = LangUtils.hashCode(hash, value_); return hash; }
From source file:com.cerema.cloud2.lib.common.network.BearerCredentials.java
/** * Does a hash of the access token./* w w w. j ava 2s .c o m*/ * * @return The hash code of the access token */ public int hashCode() { int hash = LangUtils.HASH_SEED; hash = LangUtils.hashCode(hash, mAccessToken); return hash; }
From source file:com.tmall.search.httpclient.client.ClientCookie.java
public int hashCode() { int hash = LangUtils.HASH_SEED; hash = LangUtils.hashCode(hash, this.getName()); hash = LangUtils.hashCode(hash, this.cookieDomain); hash = LangUtils.hashCode(hash, this.cookiePath); return hash;/*from w w w. j a v a 2 s. co m*/ }