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

com.finbourne.luminesce.model.CertificateStatus Maven / Gradle / Ivy

There is a newer version: 2.0.285
Show newest version
/*
 * FINBOURNE Luminesce Web API
 *
 * Contact: [email protected]
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */

package com.finbourne.luminesce.model;

import java.util.Objects;
import com.google.gson.annotations.SerializedName;

import java.io.IOException;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;

/**
 * Which System(s) have been updated with a given request
 */
@JsonAdapter(CertificateStatus.Adapter.class)
public enum CertificateStatus {
  
  NONE("None"),
  
  WEBAPIPERSISTENCE("WebApiPersistence"),
  
  VAULT("Vault"),
  
  RABBIT("Rabbit"),
  
  CONFIGSTORE("ConfigStore"),
  
  ALLSYSTEMS("AllSystems");

  private String value;

  CertificateStatus(String value) {
    this.value = value;
  }

  public String getValue() {
    return value;
  }

  @Override
  public String toString() {
    return String.valueOf(value);
  }

  public static CertificateStatus fromValue(String value) {
    for (CertificateStatus b : CertificateStatus.values()) {
      if (b.value.equals(value)) {
        return b;
      }
    }
    throw new IllegalArgumentException("Unexpected value '" + value + "'");
  }

  public static class Adapter extends TypeAdapter {
    @Override
    public void write(final JsonWriter jsonWriter, final CertificateStatus enumeration) throws IOException {
      jsonWriter.value(enumeration.getValue());
    }

    @Override
    public CertificateStatus read(final JsonReader jsonReader) throws IOException {
      String value = jsonReader.nextString();
      return CertificateStatus.fromValue(value);
    }
  }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy