Package org.infinispan.server.test.api
Interface TestClientXSiteDriver
-
public interface TestClientXSiteDriverTest client driver interface contains the methods we want to expose to be used from test methods- Since:
- 12
- Author:
- Gustavo Lira
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.infinispan.counter.api.CounterManagergetCounterManager(String siteName)Access to theCounterManagerto perform counters operations on testsStringgetMethodName()Provides the current method name<K,V>
org.infinispan.client.hotrod.multimap.MultimapCacheManager<K,V>getMultimapCacheManager(String siteName)Access to theMultimapCacheManagerto perform multimap operations on tests.HotRodTestClientDriverhotrod(String siteName)Get the HotRod instance for hotrod api operationsRestTestClientDriverrest(String siteName)Get the REST instance for hotrod api operations
-
-
-
Method Detail
-
hotrod
HotRodTestClientDriver hotrod(String siteName)
Get the HotRod instance for hotrod api operations- Returns:
HotRodTestClientDriverinstance
-
rest
RestTestClientDriver rest(String siteName)
Get the REST instance for hotrod api operations- Returns:
RestTestClientDriverinstance}
-
getMethodName
String getMethodName()
Provides the current method name- Returns:
- String, the method name
-
getCounterManager
org.infinispan.counter.api.CounterManager getCounterManager(String siteName)
Access to theCounterManagerto perform counters operations on tests- Returns:
- the
CounterManagerinstance
-
getMultimapCacheManager
<K,V> org.infinispan.client.hotrod.multimap.MultimapCacheManager<K,V> getMultimapCacheManager(String siteName)
Access to theMultimapCacheManagerto perform multimap operations on tests.- Returns:
- the
MultimapCacheManagerinstance.
-
-