Package org.springframework.data.solr.core.mapping

Examples of org.springframework.data.solr.core.mapping.SolrPersistentProperty


  }

  @SuppressWarnings("unchecked")
  @Override
  public ID getId(T entity) {
    SolrPersistentProperty id = entityMetadata.getIdProperty();
    try {
      return (ID) BeanWrapper.create(entity, null).getProperty(id);
    } catch (Exception e) {
      throw new IllegalStateException("ID could not be resolved", e);
    }
View Full Code Here

TOP

Related Classes of org.springframework.data.solr.core.mapping.SolrPersistentProperty

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.