return value;
}
private SyncConnectorConfiguration readSyncConnectorConfiguration( String prefix, Registry registry )
{
SyncConnectorConfiguration value = new SyncConnectorConfiguration();
String cronExpression = registry.getString( prefix + "cronExpression", value.getCronExpression() );
value.setCronExpression( cronExpression );
String method = registry.getString( prefix + "method", value.getMethod() );
value.setMethod( method );
String sourceRepoId = registry.getString( prefix + "sourceRepoId", value.getSourceRepoId() );
value.setSourceRepoId( sourceRepoId );
String targetRepoId = registry.getString( prefix + "targetRepoId", value.getTargetRepoId() );
value.setTargetRepoId( targetRepoId );
String proxyId = registry.getString( prefix + "proxyId", value.getProxyId() );
value.setProxyId( proxyId );
java.util.List blackListPatterns = new java.util.ArrayList/*<String>*/();
blackListPatterns.addAll( registry.getList( prefix + "blackListPatterns.blackListPattern" ) );
value.setBlackListPatterns( blackListPatterns );
java.util.List whiteListPatterns = new java.util.ArrayList/*<String>*/();
whiteListPatterns.addAll( registry.getList( prefix + "whiteListPatterns.whiteListPattern" ) );
value.setWhiteListPatterns( whiteListPatterns );
java.util.Map policies = registry.getProperties( prefix + "policies" );
value.setPolicies( policies );
java.util.Map properties = registry.getProperties( prefix + "properties" );
value.setProperties( properties );
boolean disabled = registry.getBoolean( prefix + "disabled", value.isDisabled() );
value.setDisabled( disabled );
return value;
}