View Javadoc

1   package tinlizard.model;
2   
3   import java.util.Date;
4   
5   /***
6    * TinLizard interface to JMX.
7    */
8   public interface TinLizardMBean {
9       Integer getId();
10  
11      String getName();
12  
13      Date getCreated();
14  
15      String getCreatedBy();
16  
17      Date getLastModified();
18  
19      String getLastModifiedBy();
20  
21      String getVersion();
22  
23      void indexAll();
24  }