/glassfish-3.1.2/ha/ha-file-store/src/main/java/org/glassfish/ha/store/adapter/file/ |
H A D | FileStoreTransaction.java | 41 package org.glassfish.ha.store.adapter.file; 43 import org.glassfish.ha.store.api.BackingStoreException; 44 import org.glassfish.ha.store.api.BackingStoreTransaction; 54 //For FileStore, store.save() immediately saves the data without checking for Tx.
|
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/security/store/ |
H A D | IdentityManagement.java | 41 package com.sun.enterprise.security.store; 54 /** Returns the master password as a character array. The master password is what unlocks the secure store
|
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/spi/sfsb/store/ |
H A D | MonitorableSFSBStore.java | 41 package com.sun.ejb.spi.sfsb.store;
|
H A D | SFSBUUIDUtil.java | 47 package com.sun.ejb.spi.sfsb.store;
|
/glassfish-3.1.2/ha/ha-apt/src/main/java/org/glassfish/ha/store/apt/processor/ |
H A D | MethodInfo.java | 41 package org.glassfish.ha.store.apt.processor; 46 import org.glassfish.ha.store.annotations.Attribute;
|
H A D | MethodVisitor.java | 41 package org.glassfish.ha.store.apt.processor;
|
H A D | ClassVisitor.java | 41 package org.glassfish.ha.store.apt.processor;
|
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/appserv/management/client/prefs/ |
H A D | LoginInfoStoreFactory.java | 57 /** Returns the store that is represented by given class name. The parameter must 59 * store {@link MemoryHashLoginInfoStore} is returned. 63 * @throws StoreException if the construction of default store results in problems 68 LoginInfoStore store = null; 70 store = getDefaultStore(); 72 store = getCustomStore(storeImplClassName); 73 return ( store ); 86 final LoginInfoStore store = (LoginInfoStore) ic.newInstance(); 87 return ( store );
|
H A D | LoginInfoStore.java | 46 * to access and mutate the store. The general contract of store update comprises of the following: 48 * <li> The store can contain at the most one LoginInfo for a host and port combination </li> 49 * <li> There is <i> no guarantee </i> that concurrent modification of this store by two 57 * Returns a {@link LoginInfo} corresponding to the given host and port, from this store. 59 * one LoginInfo in this store. 63 * @throws StoreException if there is something wrong with reading the store 69 * Removes the {@link LoginInfo} corresponding to the given host and port, from this store. 72 * Upon successful return, size of this store decreases by one. 75 * @throws StoreException if there is something wrong with reading the store o 90 public void store(final LoginInfo login) throws StoreException; method in interface:LoginInfoStore 104 public void store(final LoginInfo login, final boolean overwrite) throws StoreException; method in interface:LoginInfoStore [all...] |
H A D | MemoryHashLoginInfoStore.java | 76 private final File store; field in class:MemoryHashLoginInfoStore 79 * this constructor is that if the default store does not exist, it will be created. 87 store = new File(dir, DEFAULT_STORE_NAME); 88 if (!store.exists()) { 89 store.createNewFile(); 90 bw = new BufferedWriter(new FileWriter(store)); 95 br = new BufferedReader(new FileReader(store)); 116 public void store(final LoginInfo login) throws StoreException { method in class:MemoryHashLoginInfoStore 117 this.store(login, false); 120 public void store(fina method in class:MemoryHashLoginInfoStore [all...] |
/glassfish-3.1.2/jbi/serviceengine/sun-javaee-engine/src/main/java/com/sun/enterprise/jbi/serviceengine/bridge/ |
H A D | RuntimeEndpointInfoRegistryImpl.java | 58 private Hashtable store; field in class:RuntimeEndpointInfoRegistryImpl 64 store = new Hashtable(5); 78 Map runtimeEndpointInfoTable = (Map)store.get(service); 81 store.put(service, runtimeEndpointInfoTable); 98 Map runtimeInfoTable = (Map)store.get(service);
|
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/spi/container/ |
H A D | SFSBContainerInitialization.java | 47 import org.glassfish.ha.store.api.BackingStore; 48 import org.glassfish.ha.store.util.SimpleMetadata; 67 public void setBackingStore(BackingStore<Serializable, SimpleMetadata> store); argument
|
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/sql/generator/ |
H A D | VerificationSelectPlan.java | 60 * @param store Store manager executing the query. 62 public VerificationSelectPlan(RetrieveDesc desc, SQLStoreManager store) { argument 63 super(desc, store, null); 79 return new SelectOneStatement(store.getVendorType(), this);
|
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/ |
H A D | SFSBTxCheckpointCoordinator.java | 49 import org.glassfish.ha.store.api.BackingStore; 50 import org.glassfish.ha.store.api.BackingStoreException; 51 import org.glassfish.ha.store.util.SimpleMetadata; 97 st.store.save(st.key, st.state, st.isNew); 118 BackingStore<Serializable, SimpleMetadata> store; field in class:SFSBTxCheckpointCoordinator.StoreAndBeanState 123 BackingStore<Serializable, SimpleMetadata> store, SimpleMetadata state, 126 this.store = store; 122 StoreAndBeanState(Serializable key, BackingStore<Serializable, SimpleMetadata> store, SimpleMetadata state, boolean isNew) argument
|
/glassfish-3.1.2/web/web-ha/src/main/java/org/glassfish/web/ha/session/management/ |
H A D | ReplicationManager.java | 51 import org.glassfish.ha.store.api.BackingStore; 52 import org.glassfish.ha.store.api.BackingStoreException;
|
H A D | SimpleMetadataFactory.java | 43 import org.glassfish.ha.store.util.SimpleMetadata;
|
/glassfish-3.1.2/ha/ha-shoal-store/src/main/java/org/shoal/ha/store/ |
H A D | ReplicatedBackingStoreFactory.java | 41 package org.shoal.ha.store; 44 import org.glassfish.ha.store.api.*; 48 import org.shoal.adapter.store.ReplicatedBackingStore; 49 import org.shoal.adapter.store.StoreableReplicatedBackingStore; 58 @Service(name="shoal-backing-store-factory")
|
/glassfish-3.1.2/web/web-ha/src/main/java/org/glassfish/web/ha/strategy/builder/ |
H A D | ReplicatedWebMethodSessionStrategyBuilder.java | 50 import org.glassfish.ha.store.util.SimpleMetadata; 85 ReplicationStore store = null; 94 store = new ReplicationStore(serverConfigLookup, ioUtils); 98 store = new ReplicationStore(serverConfigLookup, ioUtils); 102 store = new ReplicationAttributeStore(serverConfigLookup, ioUtils); 110 rwepMgr.setStore(store);
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/valves/ |
H A D | PersistentValve.java | 154 Store store = ((PersistentManager) manager).getStore(); 155 if (store != null) { 158 session = store.load(sessionId); 167 store.remove(sessionId); 232 /* store the session in the store and remove it from the manager */ 235 Store store = ((PersistentManager) manager).getStore(); 236 if (store != null && session!=null && 240 store.save(session); 244 log("newsessionId store [all...] |
/glassfish-3.1.2/common/common-util/src/main/java/org/glassfish/security/common/ |
H A D | MasterPassword.java | 43 import com.sun.enterprise.security.store.PasswordAdapter;
|
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/enterprise/web/ |
H A D | FileStrategyBuilder.java | 70 FileStore store = new FileStore(); 71 store.setDirectory(directory); 72 mgr.setStore(store);
|
/glassfish-3.1.2/web/weld-integration/src/main/java/org/glassfish/weld/ |
H A D | ACLSingletonProvider.java | 87 private final Map<ClassLoader, T> store = new Hashtable<ClassLoader, T>(); field in class:ACLSingletonProvider.ACLSingleton 107 T instance = store.get(acl); 183 store.put(getClassLoader(), object); 188 store.remove(getClassLoader()); 193 return store.containsKey(getClassLoader());
|
/glassfish-3.1.2/webservices/jsr109-impl/src/main/java/org/glassfish/webservices/ |
H A D | JAXWSAdapterRegistry.java | 58 private Map store; field in class:JAXWSAdapterRegistry 64 store = new HashMap(); 78 (ContextAdapter)store.get(contextRoot); 83 store.put(contextRoot, contextRtInfo); 89 (ContextAdapter)store.get(contextRoot); 99 (ContextAdapter)store.get(contextRoot); 102 store.remove(contextRoot);
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/session/ |
H A D | PersistentManagerBase.java | 108 store.clear(); 123 store.remove(id); 138 return store.load(id); 152 store.save(session); 165 return store.keys(); 202 * Store object which will manage the Session store. 204 private Store store = null; field in class:PersistentManagerBase 268 * use in a request, before it should be backed up to the store. -1 498 * @param store the associated Store 500 public void setStore(Store store) { argument [all...] |
/glassfish-3.1.2/ha/ha-shoal-cache-bootstrap/src/main/java/org/glassfish/ha/store/adapter/cache/ |
H A D | ReplicationStoreProxy2.java | 41 package org.glassfish.ha.store.adapter.cache; 47 import org.glassfish.ha.store.api.*; 48 import org.glassfish.ha.store.spi.BackingStoreFactoryRegistry; 86 BackingStoreFactory storeFactory = habitat.getComponent(BackingStoreFactory.class, "shoal-backing-store-factory"); 116 BackingStoreFactory storeFactory = habitat.getComponent(BackingStoreFactory.class, "shoal-backing-store-factory");
|