Searched refs:store (Results 1 - 25 of 128) sorted by relevance

123456

/glassfish-3.1.2/ha/ha-file-store/src/main/java/org/glassfish/ha/store/adapter/file/
H A DFileStoreTransaction.java41 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 DIdentityManagement.java41 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 DMonitorableSFSBStore.java41 package com.sun.ejb.spi.sfsb.store;
H A DSFSBUUIDUtil.java47 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 DMethodInfo.java41 package org.glassfish.ha.store.apt.processor;
46 import org.glassfish.ha.store.annotations.Attribute;
H A DMethodVisitor.java41 package org.glassfish.ha.store.apt.processor;
H A DClassVisitor.java41 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 DLoginInfoStoreFactory.java57 /** 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 DLoginInfoStore.java46 * 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 DMemoryHashLoginInfoStore.java76 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 DRuntimeEndpointInfoRegistryImpl.java58 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 DSFSBContainerInitialization.java47 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 DVerificationSelectPlan.java60 * @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 DSFSBTxCheckpointCoordinator.java49 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 DReplicationManager.java51 import org.glassfish.ha.store.api.BackingStore;
52 import org.glassfish.ha.store.api.BackingStoreException;
H A DSimpleMetadataFactory.java43 import org.glassfish.ha.store.util.SimpleMetadata;
/glassfish-3.1.2/ha/ha-shoal-store/src/main/java/org/shoal/ha/store/
H A DReplicatedBackingStoreFactory.java41 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 DReplicatedWebMethodSessionStrategyBuilder.java50 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 DPersistentValve.java154 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 DMasterPassword.java43 import com.sun.enterprise.security.store.PasswordAdapter;
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/enterprise/web/
H A DFileStrategyBuilder.java70 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 DACLSingletonProvider.java87 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 DJAXWSAdapterRegistry.java58 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 DPersistentManagerBase.java108 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 DReplicationStoreProxy2.java41 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");

Completed in 222 milliseconds

123456