- * It supports the notion of inbound and/or outbound replication, both of which can be - * operational at the same time. + * It supports outbound replication for duplication of data. * * Outbound Replication *
@@ -70,7 +69,7 @@ import org.apache.commons.logging.LogFactory; * occurs during the replication. Depending on the configuration of the server, * further action may need to be taken to rectify the problem manually. * - * Inbound Replication + * Inbound Replication [DEPRECATED: Usage {@link CachingContentStore}] *
* This can be used to lazily replicate content onto the primary store. When * content can't be found in the primary store, the other stores are checked @@ -169,9 +168,11 @@ public class ReplicatingContentStore extends AbstractContentStore * * @param inbound true to pull content onto the primary store when found * on one of the other stores + * @deprecated Use {@link CachingContentStore} */ public void setInbound(boolean inbound) { + logger.warn("The 'inbound' property has been deprecated in the ReplicatingContentStore in 5.0. Use the CachingContentStore."); this.inbound = inbound; }