1 package com.atlassian.plugin.spring;
2
3 import org.springframework.beans.factory.BeanFactoryAware;
4 import org.springframework.beans.factory.BeanFactory;
5 import org.springframework.beans.BeansException;
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 {
13 public void sayHi() {
14 System.out.println("hi");
15 }
16
17 public void setBeanFactory(BeanFactory beanFactory) throws BeansException {
18 }
19 }