mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-10-15 15:02:20 +00:00
SEARCH-207, fixed creation on solr core when using SSL. Added secureComms to solr beans in the subsystem and updated admin UI
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/DEV/5.2.N/root@133606 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -52,7 +52,9 @@ public class SolrStoreMapping implements BeanNameAware
|
||||
|
||||
private int numShards = 1;
|
||||
|
||||
private int replicationFactor = 1;
|
||||
private int replicationFactor = 1;
|
||||
|
||||
private String secureComms;
|
||||
|
||||
public SolrStoreMapping()
|
||||
{
|
||||
@@ -247,6 +249,11 @@ public class SolrStoreMapping implements BeanNameAware
|
||||
public void setReplicationFactor(int replicationFactor)
|
||||
{
|
||||
this.replicationFactor = replicationFactor;
|
||||
}
|
||||
|
||||
public void setSecureComms(String secureComms)
|
||||
{
|
||||
this.secureComms = secureComms;
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user