main.java.org.lightcouch.ReplicationResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloudant-client Show documentation
Show all versions of cloudant-client Show documentation
Official Cloudant client for Java
/*
* Copyright (C) 2011 lightcouch.org
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.lightcouch;
import java.util.List;
import com.google.gson.annotations.SerializedName;
/**
* Holds the result of a replication request, along with previous sessions history.
* @see Replication
* @since 0.0.2
* @author Ahmed Yehia
*/
public class ReplicationResult {
@SerializedName("ok")
private boolean ok;
@SerializedName("session_id")
private String sessionId;
@SerializedName("source_last_seq")
private String sourceLastSeq;
@SerializedName("_local_id")
private String localId;
@SerializedName("history")
private List histories;
public boolean isOk() {
return ok;
}
public String getSessionId() {
return sessionId;
}
public String getSourceLastSeq() {
return sourceLastSeq;
}
public String getLocalId() {
return localId;
}
public List getHistories() {
return histories;
}
/**
* Represents a replication session history.
* @author Ahmed Yehia
*/
public static class ReplicationHistory {
@SerializedName("session_id")
private String sessionId;
@SerializedName("start_time")
private String startTime;
@SerializedName("end_time")
private String endTime;
@SerializedName("start_last_seq")
private String startLastSeq;
@SerializedName("end_last_seq")
private String endLastSeq;
@SerializedName("recorded_seq")
private String recordedSeq;
@SerializedName("missing_checked")
private long missingChecked;
@SerializedName("missing_found")
private long missingFound;
@SerializedName("docs_read")
private long docsRead;
@SerializedName("docs_written")
private long docsWritten;
@SerializedName("doc_write_failures")
private long docWriteFailures;
public String getSessionId() {
return sessionId;
}
public String getStartTime() {
return startTime;
}
public String getEndTime() {
return endTime;
}
public String getStartLastSeq() {
return startLastSeq;
}
public String getEndLastSeq() {
return endLastSeq;
}
public String getRecordedSeq() {
return recordedSeq;
}
public long getMissingChecked() {
return missingChecked;
}
public long getMissingFound() {
return missingFound;
}
public long getDocsRead() {
return docsRead;
}
public long getDocsWritten() {
return docsWritten;
}
public long getDocWriteFailures() {
return docWriteFailures;
}
} // /class ReplicationHistory
}