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

com.microsoft.azure.documentdb.internal.directconnectivity.ReadReplicaResult Maven / Gradle / Ivy

package com.microsoft.azure.documentdb.internal.directconnectivity;

import java.util.List;

class ReadReplicaResult {
    private boolean retryWithForceRefresh;
    private List responses;

    public ReadReplicaResult(boolean retryWithForceRefresh, List responses) {
        this.retryWithForceRefresh = retryWithForceRefresh;
        this.responses = responses;
    }

    public boolean isRetryWithForceRefresh() {
        return retryWithForceRefresh;
    }

    public void setRetryWithForceRefresh(boolean retryWithForceRefresh) {
        this.retryWithForceRefresh = retryWithForceRefresh;
    }

    public List getResponses() {
        return responses;
    }

    public void setResponses(List responses) {
        this.responses = responses;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy