ALF-4346 & ALF-4348 - More work on schedulable actions, and start to expose this through to the replication service

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@22019 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Nick Burch
2010-08-26 13:36:37 +00:00
parent 5e8c77a99b
commit 61583adef0
10 changed files with 430 additions and 70 deletions

View File

@@ -45,4 +45,17 @@ public interface ReplicationService extends ReplicationDefinitionPersister {
*/
@NotAuditable
void replicate(ReplicationDefinition replicationDefinition);
/**
* Turns on scheduling for the specified replication. You can
* then set the scheduling details on the definition.
*/
@NotAuditable
void enableScheduling(ReplicationDefinition replicationDefinition);
/**
* Turns off scheduling for the specified replication
*/
@NotAuditable
void disableScheduling(ReplicationDefinition replicationDefinition);
}