Package org.springframework.data.elasticsearch.entities.ParentEntity

Examples of org.springframework.data.elasticsearch.entities.ParentEntity.ChildEntity


    return parent;
  }

  private ChildEntity index(String childId, String parentId, String name) {
    ChildEntity child = new ChildEntity(childId, parentId, name);
    IndexQuery index = new IndexQuery();
    index.setId(child.getId());
    index.setObject(child);
    index.setParentId(child.getParentId());
    elasticsearchTemplate.index(index);

    return child;
  }
View Full Code Here

TOP

Related Classes of org.springframework.data.elasticsearch.entities.ParentEntity.ChildEntity

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.