Code formating and whitespace cleanup
[jpim.git] / src / de / j32 / pimstuff / conduit / Registry.java
1 package de.j32.pimstuff.conduit;
2
3 import org.springframework.context.ApplicationContext;
4 import org.springframework.context.support.FileSystemXmlApplicationContext;
5
6 public class Registry
7 {
8     static ApplicationContext context_ = new FileSystemXmlApplicationContext(
9             "conduits.xml");
10
11     public static Conduit get(String k)
12     {
13         return context_.getBean(k, Conduit.class);
14     }
15
16 }