Interface InfinispanConnectionProvider
- 
- All Superinterfaces:
- Provider
 - All Known Implementing Classes:
- DefaultInfinispanConnectionProvider
 
 public interface InfinispanConnectionProvider extends Provider - Author:
- Stian Thorgersen
 
- 
- 
Field Summary
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description <K,V>
 org.infinispan.Cache<K,V>getCache(String name)<K,V>
 org.infinispan.client.hotrod.RemoteCache<K,V>getRemoteCache(String name)Get remote cache of given name.TopologyInfogetTopologyInfo()
 
- 
- 
- 
Field Detail- 
REALM_CACHE_NAMEstatic final String REALM_CACHE_NAME - See Also:
- Constant Field Values
 
 - 
REALM_REVISIONS_CACHE_NAMEstatic final String REALM_REVISIONS_CACHE_NAME - See Also:
- Constant Field Values
 
 - 
REALM_REVISIONS_CACHE_DEFAULT_MAXstatic final int REALM_REVISIONS_CACHE_DEFAULT_MAX - See Also:
- Constant Field Values
 
 - 
USER_CACHE_NAMEstatic final String USER_CACHE_NAME - See Also:
- Constant Field Values
 
 - 
USER_REVISIONS_CACHE_NAMEstatic final String USER_REVISIONS_CACHE_NAME - See Also:
- Constant Field Values
 
 - 
USER_REVISIONS_CACHE_DEFAULT_MAXstatic final int USER_REVISIONS_CACHE_DEFAULT_MAX - See Also:
- Constant Field Values
 
 - 
USER_SESSION_CACHE_NAMEstatic final String USER_SESSION_CACHE_NAME - See Also:
- Constant Field Values
 
 - 
CLIENT_SESSION_CACHE_NAMEstatic final String CLIENT_SESSION_CACHE_NAME - See Also:
- Constant Field Values
 
 - 
OFFLINE_USER_SESSION_CACHE_NAMEstatic final String OFFLINE_USER_SESSION_CACHE_NAME - See Also:
- Constant Field Values
 
 - 
OFFLINE_CLIENT_SESSION_CACHE_NAMEstatic final String OFFLINE_CLIENT_SESSION_CACHE_NAME - See Also:
- Constant Field Values
 
 - 
LOGIN_FAILURE_CACHE_NAMEstatic final String LOGIN_FAILURE_CACHE_NAME - See Also:
- Constant Field Values
 
 - 
AUTHENTICATION_SESSIONS_CACHE_NAMEstatic final String AUTHENTICATION_SESSIONS_CACHE_NAME - See Also:
- Constant Field Values
 
 - 
WORK_CACHE_NAMEstatic final String WORK_CACHE_NAME - See Also:
- Constant Field Values
 
 - 
AUTHORIZATION_CACHE_NAMEstatic final String AUTHORIZATION_CACHE_NAME - See Also:
- Constant Field Values
 
 - 
AUTHORIZATION_REVISIONS_CACHE_NAMEstatic final String AUTHORIZATION_REVISIONS_CACHE_NAME - See Also:
- Constant Field Values
 
 - 
AUTHORIZATION_REVISIONS_CACHE_DEFAULT_MAXstatic final int AUTHORIZATION_REVISIONS_CACHE_DEFAULT_MAX - See Also:
- Constant Field Values
 
 - 
ACTION_TOKEN_CACHEstatic final String ACTION_TOKEN_CACHE - See Also:
- Constant Field Values
 
 - 
ACTION_TOKEN_CACHE_DEFAULT_MAXstatic final int ACTION_TOKEN_CACHE_DEFAULT_MAX - See Also:
- Constant Field Values
 
 - 
ACTION_TOKEN_MAX_IDLE_SECONDSstatic final int ACTION_TOKEN_MAX_IDLE_SECONDS - See Also:
- Constant Field Values
 
 - 
ACTION_TOKEN_WAKE_UP_INTERVAL_SECONDSstatic final long ACTION_TOKEN_WAKE_UP_INTERVAL_SECONDS - See Also:
- Constant Field Values
 
 - 
KEYS_CACHE_NAMEstatic final String KEYS_CACHE_NAME - See Also:
- Constant Field Values
 
 - 
KEYS_CACHE_DEFAULT_MAXstatic final int KEYS_CACHE_DEFAULT_MAX - See Also:
- Constant Field Values
 
 - 
KEYS_CACHE_MAX_IDLE_SECONDSstatic final int KEYS_CACHE_MAX_IDLE_SECONDS - See Also:
- Constant Field Values
 
 - 
JBOSS_NODE_NAMEstatic final String JBOSS_NODE_NAME - See Also:
- Constant Field Values
 
 - 
JGROUPS_UDP_MCAST_ADDRstatic final String JGROUPS_UDP_MCAST_ADDR - See Also:
- Constant Field Values
 
 - 
JBOSS_SITE_NAMEstatic final String JBOSS_SITE_NAME - See Also:
- Constant Field Values
 
 - 
JMX_DOMAINstatic final String JMX_DOMAIN - See Also:
- Constant Field Values
 
 - 
NODE_PREFIXstatic final String NODE_PREFIX - See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
getCache<K,V> org.infinispan.Cache<K,V> getCache(String name) 
 - 
getRemoteCache<K,V> org.infinispan.client.hotrod.RemoteCache<K,V> getRemoteCache(String name) Get remote cache of given name. Could just retrieve the remote cache from the remoteStore configured in given infinispan cache and/or alternatively return the secured remoteCache (remoteCache corresponding to secured hotrod endpoint)
 - 
getTopologyInfoTopologyInfo getTopologyInfo() - Returns:
- Information about cluster topology
 
 
- 
 
-