Spring Mapear Classe com generics

Bom dia Pessoal.
Preciso mapear um bean no Spring 3, qo que esse bean é uam classe com generics.

[code]//Inplementação
public class NotificationService<T> implements INotificationService<T> {…


//Interface
public interface INotificationService<T> {…[/code]

Eu fazia a injeção dessa classe em um bean através de @Autowire, porem agora precisei mudar para XML as definições do bean. Como mapear uma classe com generics no XML de definições do Spring ?

VLw