1 package com.atlassian.plugin.spring;
2
3 import org.springframework.beans.BeansException;
4 import org.springframework.beans.factory.BeanFactory;
5 import org.springframework.beans.factory.BeanFactoryAware;
6
7 import java.io.Serializable;
8 import java.util.HashMap;
9
10 @AvailableToPlugins
11 public class FooableBean extends HashMap implements Fooable, BeanFactoryAware, Serializable {
12 public void sayHi() {
13 System.out.println("hi");
14 }
15
16 public void setBeanFactory(BeanFactory beanFactory) throws BeansException {
17 }
18 }