Package org.openbravo.client.kernel
Interface StaticResourceProviderMBean
-
- All Known Implementing Classes:
StaticResourceProvider
public interface StaticResourceProviderMBean
This interface allows to define theStaticResourceProvider
class as an standard MBean that can be managed through JMX.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Set<String>
getCachedStaticResourceKeys()
List<String>
getStaticResourceFileNames()
void
removeAllStaticResourceCachedInfo()
Removes all the cached information about the static resources.void
removeStaticResourceCachedInfo(String resourceName)
Removes the cached information related to a static resource whose identifying name is passed as parameter.
-
-
-
Method Detail
-
getCachedStaticResourceKeys
Set<String> getCachedStaticResourceKeys()
- Returns:
- a Set with the keys used in the static resources cache.
-
getStaticResourceFileNames
List<String> getStaticResourceFileNames()
- Returns:
- a List with the names of the files that contain static resources.
-
removeStaticResourceCachedInfo
void removeStaticResourceCachedInfo(String resourceName)
Removes the cached information related to a static resource whose identifying name is passed as parameter.- Parameters:
resourceName
- the identifying name of the static resource
-
removeAllStaticResourceCachedInfo
void removeAllStaticResourceCachedInfo()
Removes all the cached information about the static resources.
-
-