pl.edu.icm.unity.engine.translation.in.SystemInputTranslationProfileProvider Maven / Gradle / Ivy
/*
* Copyright (c) 2017 Bixbit - Krzysztof Benedyczak All rights reserved.
* See LICENCE.txt file for licensing information.
*/
package pl.edu.icm.unity.engine.translation.in;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext;
import org.springframework.stereotype.Component;
import pl.edu.icm.unity.engine.translation.SystemTranslationProfileProviderBase;
import pl.edu.icm.unity.types.translation.ProfileType;
/**
* Provides system input translation profiles
* @author P.Piernik
*
*/
@Component
public class SystemInputTranslationProfileProvider extends SystemTranslationProfileProviderBase
{
@Autowired
public SystemInputTranslationProfileProvider(ApplicationContext applicationContext)
{
super(applicationContext);
}
@Override
protected ProfileType getType()
{
return ProfileType.INPUT;
}
}