Example usage for org.springframework.data.solr ExampleSolrBean ExampleSolrBean

List of usage examples for org.springframework.data.solr ExampleSolrBean ExampleSolrBean

Introduction

In this page you can find the example usage for org.springframework.data.solr ExampleSolrBean ExampleSolrBean.

Prototype

public ExampleSolrBean(String id, String name, String category) 

Source Link

Usage

From source file:org.springframework.data.solr.AbstractITestWithEmbeddedSolrServer.java

public ExampleSolrBean createExampleBeanWithId(String id) {
    return new ExampleSolrBean(id, "bean_" + id, "category_" + id);
}