20 lines
		
	
	
		
			416 B
		
	
	
	
		
			Java
		
	
	
	
	
	
		
		
			
		
	
	
			20 lines
		
	
	
		
			416 B
		
	
	
	
		
			Java
		
	
	
	
	
	
| 
								 | 
							
								package com.baeldung;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								import org.springframework.beans.factory.annotation.Autowired;
							 | 
						||
| 
								 | 
							
								import org.springframework.stereotype.Service;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								@Service
							 | 
						||
| 
								 | 
							
								public class UserService {
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    private NameService nameService;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    @Autowired
							 | 
						||
| 
								 | 
							
								    public UserService(NameService nameService) {
							 | 
						||
| 
								 | 
							
								        this.nameService = nameService;
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    public String getUserName(String id) {
							 | 
						||
| 
								 | 
							
								        return nameService.getUserName(id);
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								}
							 |