public int hashCode()

in scim-server/src/main/java/org/apache/directory/scim/server/configuration/ServerConfiguration.java [250:269]


  public int hashCode() {
    final int PRIME = 59;
    int result = 1;
    final Object $id = this.getId();
    result = result * PRIME + ($id == null ? 43 : $id.hashCode());
    result = result * PRIME + (this.isSupportsChangePassword() ? 79 : 97);
    result = result * PRIME + (this.isSupportsBulk() ? 79 : 97);
    result = result * PRIME + this.getBulkMaxOperations();
    result = result * PRIME + this.getBulkMaxPayloadSize();
    result = result * PRIME + (this.isSupportsETag() ? 79 : 97);
    result = result * PRIME + (this.isSupportsFilter() ? 79 : 97);
    result = result * PRIME + this.getFilterMaxResults();
    result = result * PRIME + (this.isSupportsPatch() ? 79 : 97);
    result = result * PRIME + (this.isSupportsSort() ? 79 : 97);
    final Object $documentationUri = this.getDocumentationUri();
    result = result * PRIME + ($documentationUri == null ? 43 : $documentationUri.hashCode());
    final Object $authenticationSchemas = this.getAuthenticationSchemas();
    result = result * PRIME + ($authenticationSchemas == null ? 43 : $authenticationSchemas.hashCode());
    return result;
  }