1 package hu.user.mediacube.indexer;
\r
3 import org.springframework.beans.factory.annotation.Autowired;
\r
6 public class EnglishGreetingService implements GreetingService {
\r
9 private JsonProperties jsonProperties;
\r
12 public String greet(int id) {
\r
13 String message = "Hello";
\r
14 if (jsonProperties != null)
\r
15 message = jsonProperties.getMessage();
\r
16 return message + " " + id;
\r