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

com.marklogic.mgmt.api.database.ForestDatabaseReplication Maven / Gradle / Ivy

Go to download

Java client for the MarkLogic REST Management API and for deploying applications to MarkLogic

There is a newer version: 5.0.0
Show newest version
package com.marklogic.mgmt.api.database;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElementWrapper;
import java.util.List;

@XmlAccessorType(XmlAccessType.FIELD)
public class ForestDatabaseReplication {

	@XmlElementWrapper(name = "foreign-replicas")
	@XmlElement(name = "foreign-replica")
	private List foreignReplica;

	@XmlElement(name = "foreign-master")
	private ForestForeignReplica foreignMaster;

	public List getForeignReplica() {
		return foreignReplica;
	}

	public void setForeignReplica(List foreignReplica) {
		this.foreignReplica = foreignReplica;
	}

	public ForestForeignReplica getForeignMaster() {
		return foreignMaster;
	}

	public void setForeignMaster(ForestForeignReplica foreignMaster) {
		this.foreignMaster = foreignMaster;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy