Subversion Repositories SmartDukaan

Rev

Rev 20190 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 20190 Rev 20191
Line 116... Line 116...
116
	public String getSearch_text() {
116
	public String getSearch_text() {
117
		return search_text;
117
		return search_text;
118
	}
118
	}
119
	
119
	
120
	public static void main(String[] args) throws URISyntaxException, IOException{
120
	public static void main(String[] args) throws URISyntaxException, IOException{
121
		AutoSuggest a =  new AutoSuggest();
121
		AutoSuggestController a =  new AutoSuggestController();
122
		a.setSearch_text("apple");
122
		a.setSearch_text("apple");
123
		a.index();
123
		a.index();
124
		System.out.println(a.getResultJson());
124
		System.out.println(a.getResultJson());
125
	}
125
	}
126
	
126