001/*- 002 * #%L 003 * Smile CDR - CDR 004 * %% 005 * Copyright (C) 2016 - 2024 Smile CDR, Inc. 006 * %% 007 * All rights reserved. 008 * #L% 009 */ 010package ca.cdr.api.fhirgw.model; 011 012import com.fasterxml.jackson.annotation.JsonProperty; 013 014public enum RetryStrategyEnum { 015 /** 016 * Linear backoff for retry strategy 017 */ 018 @JsonProperty("linear") 019 LINEAR, 020 021 /** 022 * Exponential backoff for retry strategy 023 */ 024 @JsonProperty("exponential") 025 EXPONENTIAL 026}