package com.juick.components.configuration; import com.juick.components.XMPPFTServer; import com.juick.configuration.DataConfiguration; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Import; import org.springframework.context.annotation.PropertySource; import org.springframework.core.env.Environment; import javax.inject.Inject; /** * Created by aalexeev on 11/12/16. */ @Configuration @PropertySource("classpath:juick.conf") public class FileTransferAppConfiguration { @Inject private Environment env; @Bean public XMPPFTServer xmpp() { return new XMPPFTServer(env); } }