package org.alfresco.repo.replication; /** * An interface for retrieving configurable replication parameters. */ public interface ReplicationParams { /** * Lock replicated items in target repository * * @return true lock replication items */ public boolean getTransferReadOnly(); /** * Is the Replication Service Enabled * * @return true the replication service is enabled */ public boolean isEnabled(); /** * set whether the replication service is enabled */ public void setEnabled(boolean enabled); }