Package org.springframework.data.solr.core.schema

Examples of org.springframework.data.solr.core.schema.SolrJsonResponse


  public String getSchemaName(String collectionName) {
    return execute(new SolrCallback<String>() {

      @Override
      public String doInSolr(SolrServer solrServer) throws SolrServerException, IOException {
        SolrJsonResponse response = SolrSchemaRequest.name().process(solrServer);
        if (response != null) {
          return response.getNode("name").asText();
        }
        return null;
      }
    });
  }
View Full Code Here

TOP

Related Classes of org.springframework.data.solr.core.schema.SolrJsonResponse

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.