Merged HEAD-BUG-FIX (4.3/Cloud) to HEAD (4.3/Cloud)

59048: ALF-13291 - Transfer target is still displayed in replication job despite of target was deleted
      build fix.   fix incomplete.


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@62081 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Alan Davis
2014-02-12 00:48:56 +00:00
parent d6d16285d9
commit 122952e3f3
3 changed files with 22 additions and 6 deletions

View File

@@ -263,4 +263,16 @@ public class ReplicationDefinitionImpl extends ActionImpl implements Replication
public boolean isSchedulingEnabled() {
return (schedule != null);
}
private boolean targetExists = false;
public boolean isTargetExists()
{
return targetExists;
}
public void setTargetExists(boolean targetExists)
{
this.targetExists = targetExists;
}
}