1 package com.atlassian.spring.extension.registration;
2
3 import org.springframework.beans.factory.BeanFactory;
4
5 /**
6 * Created by IntelliJ IDEA.
7 * User: cmiller
8 * Date: Sep 20, 2007
9 * Time: 12:19:57 PM
10 * To change this template use File | Settings | File Templates.
11 */
12 interface Registration
13 {
14 void register(BeanFactory beanFactory) throws RegistrationException;
15 }