View Javadoc

1   package org.telscenter.sailotrunk;
2   
3   /***
4    * Connect an OTrunk=managed bean into a SAIL Pod BeanContext
5    * 
6    * @author turadg
7    * 
8    */
9   public interface OTPodAdapter {
10  
11  	/***
12  	 * Register the <tt>bean</tt> argument within the BeanContext (SAIL Pod)
13  	 * of the OTrunk viewer
14  	 * 
15  	 * @param bean
16  	 */
17  	public void registerBean(Object bean);
18  
19  }