/** * ============================================================================= * * ORCID (R) Open Source * http://orcid.org * * Copyright (c) 2012-2014 ORCID, Inc. * Licensed under an MIT-Style License (MIT) * http://orcid.org/open-source-license * * This copyright and license information (including a link to the full license) * shall be included in its entirety in all copies or substantial portion of * the software. * * ============================================================================= */ package org.orcid.listener.persistence.util; public enum AvailableBroker { /** * The name variable of the available broker should match the column name in * the record_status table */ DUMP_STATUS_1_2_API("api_1_2_dump_status"), DUMP_STATUS_2_0_API("api_2_0_dump_status"), SOLR("api_2_0_solr_status"); private final String name; AvailableBroker(String n) { this.name = n; } public String value() { return name; } public static AvailableBroker fromValue(String v) { for (AvailableBroker c : AvailableBroker.values()) { if (c.name.equals(v.toLowerCase())) { return c; } } throw new IllegalArgumentException(v); } @Override public String toString() { return name; } }