All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jclouds.azurecompute.arm.domain.AutoValue_Certificate_SecretProperties Maven / Gradle / Ivy

The newest version!

package org.jclouds.azurecompute.arm.domain;

import javax.annotation.Generated;

@Generated("com.google.auto.value.processor.AutoValueProcessor")
 final class AutoValue_Certificate_SecretProperties extends Certificate.SecretProperties {

  private final String contentType;

  AutoValue_Certificate_SecretProperties(
      String contentType) {
    if (contentType == null) {
      throw new NullPointerException("Null contentType");
    }
    this.contentType = contentType;
  }

  @Override
  public String contentType() {
    return contentType;
  }

  @Override
  public String toString() {
    return "SecretProperties{"
        + "contentType=" + contentType
        + "}";
  }

  @Override
  public boolean equals(Object o) {
    if (o == this) {
      return true;
    }
    if (o instanceof Certificate.SecretProperties) {
      Certificate.SecretProperties that = (Certificate.SecretProperties) o;
      return (this.contentType.equals(that.contentType()));
    }
    return false;
  }

  @Override
  public int hashCode() {
    int h = 1;
    h *= 1000003;
    h ^= this.contentType.hashCode();
    return h;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy