This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <doc> | |
| <field name="auction_id">54432834</field> | |
| <field name="title">Dell M2012 24" IPS Monitor</field> | |
| <field name="category">monitors</field> | |
| <field name="current_bid">279.95</field> | |
| <field name="end_date">2013-01-06T09:26:04.18Z</field> | |
| <field name="feature">IPS</field> | |
| <field name="feature">Swivel</field> | |
| </doc> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- persistent="true" allows the web interface to make lasting changes to Solr. --> | |
| <solr persistent="true" sharedlib="lib"> | |
| <cores adminpath="/admin/cores" host="${host:}" hostcontext="${hostContext:}" hostport="${jetty.port:}" zkclienttimeout="${zkClientTimeout:15000}"> | |
| <core default="true" instancedir="auctions" name="auctions"> | |
| </core></cores> | |
| </solr> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Category { | |
| private String name; | |
| public Category() { | |
| name = "" + Math.random(); | |
| } | |
| public List<Category> getChildCategories() { | |
| List<Category> childCategories = new ArrayList<>(); | |
| for(int i=0; i<20; i++) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <dependencies> | |
| <dependency> | |
| <groupId>nz.co.kevindoran</groupId> | |
| <artifactId>google-charts-jsf</artifactId> | |
| <version>1.0-SNAPSHOT</version> | |
| <type>jar</type> | |
| </dependency> | |
| </dependencies> |