Uses of Class
org.glassfish.ha.store.api.BackingStore

Packages that use BackingStore
com.sun.xml.ws.api.ha   
com.sun.xml.ws.rx.ha   
com.sun.xml.wss.impl.misc   
org.glassfish.ha.store.api   
org.glassfish.ha.store.impl   
 

Uses of BackingStore in com.sun.xml.ws.api.ha
 

Methods in com.sun.xml.ws.api.ha that return BackingStore
<K extends Serializable,V extends Serializable>
BackingStore<K,V>
HighAvailabilityProvider.createBackingStore(BackingStoreFactory factory, String backingStoreName, Class<K> keyClass, Class<V> valueClass)
          Helper method that avoids the need for exception handling boilerplate code when creating a new BackingStore instance.
 

Methods in com.sun.xml.ws.api.ha with parameters of type BackingStore
static void HighAvailabilityProvider.close(BackingStore<?,?> backingStore)
          Helper method that avoids the need for exception handling boilerplate code when closing a BackingStore instance.
static void HighAvailabilityProvider.destroy(BackingStore<?,?> backingStore)
          Helper method that avoids the need for exception handling boilerplate code when destroying a BackingStore instance.
static
<K extends Serializable,V extends Serializable>
V
HighAvailabilityProvider.loadFrom(BackingStore<K,V> backingStore, K key, String version)
          Helper method that avoids the need for exception handling boilerplate code when loading data from a BackingStore instance.
static
<K extends Serializable>
void
HighAvailabilityProvider.removeExpired(BackingStore<K,?> backingStore)
          Helper method that avoids the need for exception handling boilerplate code when destroying a BackingStore instance.
static
<K extends Serializable,V extends Serializable>
void
HighAvailabilityProvider.removeFrom(BackingStore<K,V> backingStore, K key)
          Helper method that avoids the need for exception handling boilerplate code when removing data from a BackingStore instance.
static
<K extends Serializable,V extends Serializable>
String
HighAvailabilityProvider.saveTo(BackingStore<K,V> backingStore, K key, V value, boolean isNew)
          Helper method that avoids the need for exception handling boilerplate code when storing data into a BackingStore instance.
 

Uses of BackingStore in com.sun.xml.ws.rx.ha
 

Methods in com.sun.xml.ws.rx.ha with parameters of type BackingStore
static
<K extends Serializable,V extends Serializable>
HighlyAvailableMap<K,V>
HighlyAvailableMap.create(String name, BackingStore<K,V> backingStore)
           
static
<K extends Serializable,V extends Serializable>
HighlyAvailableMap<K,V>
HighlyAvailableMap.createSticky(String name, BackingStore<StickyKey,V> backingStore)
           
 

Constructors in com.sun.xml.ws.rx.ha with parameters of type BackingStore
HighlyAvailableMap.SimpleReplicationManager(String name, BackingStore<K,V> backingStore)
           
HighlyAvailableMap.StickyReplicationManager(String name, BackingStore<StickyKey,V> backingStore)
           
 

Uses of BackingStore in com.sun.xml.wss.impl.misc
 

Constructors in com.sun.xml.wss.impl.misc with parameters of type BackingStore
HANonceManager(BackingStore<StickyKey,HANonceManager.HAPojo> backingStore, long maxNonceAge)
           
 

Uses of BackingStore in org.glassfish.ha.store.api
 

Methods in org.glassfish.ha.store.api that return BackingStore
<K extends Serializable,V extends Serializable>
BackingStore<K,V>
BackingStoreFactory.createBackingStore(BackingStoreConfiguration<K,V> conf)
          This method is called to create a BackingStore.
 

Uses of BackingStore in org.glassfish.ha.store.impl
 

Subclasses of BackingStore in org.glassfish.ha.store.impl
 class NoOpBackingStore<K extends Serializable,V extends Serializable>
           
 

Methods in org.glassfish.ha.store.impl that return BackingStore
<K extends Serializable,V extends Serializable>
BackingStore<K,V>
NoOpBackingStoreFactory.createBackingStore(BackingStoreConfiguration<K,V> conf)
           
 



Copyright © 2005-2015 Oracle Corporation. All Rights Reserved.