Package org.apache.solr.client.solrj.response

Examples of org.apache.solr.client.solrj.response.CoreAdminResponse


  @Override
  public boolean schemaExists() {
    boolean exists = false;
    try {
      CoreAdminResponse rsp = CoreAdminRequest.getStatus(mapping.getCoreName(),
          adminServer);
      exists = rsp.getUptime(mapping.getCoreName()) != null;
    } catch (Exception e) {
      LOG.error(e.getMessage(), e.getStackTrace().toString());
    }
    return exists;
  }
View Full Code Here

TOP

Related Classes of org.apache.solr.client.solrj.response.CoreAdminResponse

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.