11 lines
		
	
	
		
			191 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			191 B
		
	
	
	
		
			Java
		
	
	
	
	
	
package com.baeldung;
 | 
						|
 | 
						|
import org.springframework.stereotype.Service;
 | 
						|
 | 
						|
@Service
 | 
						|
public class NameService {
 | 
						|
    public String getUserName(String id) {
 | 
						|
        return "Real user name";
 | 
						|
    }
 | 
						|
}
 |