1 package org.marketchangers;
2
3 /***
4 * @author <a href="mailto:mtodd@wc-group.com">Matthew Todd</a>
5 */
6 public interface ServiceLocator {
7 public static final String KEY = ServiceLocator.class.getName();
8 public Object get(Class key);
9 }