|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
PojoCacheMBean.java | - | - | - | - |
|
1 | /* | |
2 | * JBoss, the OpenSource J2EE webOS | |
3 | * | |
4 | * Distributable under LGPL license. | |
5 | * See terms of license at gnu.org. | |
6 | */ | |
7 | package org.jboss.cache.pojo; | |
8 | ||
9 | import org.w3c.dom.Element; | |
10 | ||
11 | ||
12 | /** | |
13 | * MBean interface for PojoCache. | |
14 | * | |
15 | * @author Ben Wang | |
16 | * @since 1.4 | |
17 | */ | |
18 | public interface PojoCacheMBean extends PojoCache | |
19 | { | |
20 | /** | |
21 | * Inject the config element that is specific to PojoCache. | |
22 | * | |
23 | * @param config | |
24 | */ | |
25 | public void setPojoCacheConfig(Element config); | |
26 | ||
27 | public Element getPojoCacheConfig(); | |
28 | ||
29 | } |
|