Searched defs:storage (Results 1 - 25 of 38) sorted by relevance

12

/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/storage/
H A DDatabaseListener.java17 package com.forgerock.authenticator.storage;
H A DIdentityModelListener.java17 package com.forgerock.authenticator.storage;
H A DDatabaseOpenHelper.java17 package com.forgerock.authenticator.storage;
H A DSettings.java17 package com.forgerock.authenticator.storage;
H A DStorageSystem.java17 package com.forgerock.authenticator.storage;
27 * Encapsulates a backing storage mechanism, and provides a standard set of functions for operating
89 * Whether the storage system currently contains any data.
90 * @return True if the storage system is empty, false otherwise.
H A DIdentityModel.java17 package com.forgerock.authenticator.storage;
59 * Set the initial storage system to load data from. Can only be used once for a given Model.
60 * @param storageSystem The storage system to use.
79 * Returns the storage system currently backing this model.
80 * @return The storage system being used.
240 * Transfer the current data to a new storage system.
241 * @param newStorage The storage system to transfer the data to.
H A DModelOpenHelper.java17 package com.forgerock.authenticator.storage;
33 * Used by the app to update the storage system to the latest version.
60 * Return a model backed by an up to date storage system.
108 * Establish which values already exist in the new storage, and throw those away in the old storage
120 * Compare expected data with actual data, delete any unexpected from new storage
H A DIdentityDatabase.java17 package com.forgerock.authenticator.storage;
46 * specific storage mechanism.
H A DSharedPreferencesStorage.java17 package com.forgerock.authenticator.storage;
54 * Data Access Object which can store and load both Identities and Mechanisms. Encapsulates a storage
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/dpro/session/
H A DLegacySessionIDExtensions.java55 public LegacySessionIDExtensions(String primary, String site, String storage) { argument
59 extensionsMap.put(STORAGE_KEY, storage);
/forgerock/openam/openam-core/src/main/java/com/iplanet/dpro/session/
H A DLegacySessionIDExtensions.java55 public LegacySessionIDExtensions(String primary, String site, String storage) { argument
59 if (storage != null) {
60 extensionsMap.put(STORAGE_KEY, storage);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/
H A DPersistentCompressedSchema.java72 /** The storage in which the trees are held. */
73 private final Storage storage; field in class:PersistentCompressedSchema
83 * @param storage
84 * A reference to the storage in which the trees will be held.
86 * @param accessMode specifies how the storage has been opened (read only or read/write)
95 PersistentCompressedSchema(final Storage storage, WriteableTransaction txn, AccessMode accessMode) argument
98 this.storage = storage;
219 storage.write(new WriteOperation()
H A DRootContainer.java73 /** The tree storage. */
74 private final Storage storage; field in class:RootContainer
93 * Creates a new RootContainer object representing a storage.
101 RootContainer(String backendID, Storage storage, PluggableBackendCfg config) argument
104 this.storage = storage;
114 * Returns the underlying storage engine.
116 * @return the underlying storage engine
120 return storage;
129 * If an error occurs when opening the storage
[all...]
H A DTracedStorage.java421 private final Storage storage; field in class:TracedStorage
423 TracedStorage(final Storage storage, final String backendId) argument
425 this.storage = storage;
436 appendKeyValue(builder, "storage", storageId());
473 storage.close();
480 return storage.getStorageStatus();
487 storage.open(accessMode);
506 return storage.read(op);
513 storage
[all...]
H A DBackendImpl.java92 * in a pluggable storage.
115 /** The underlying storage engine. */
116 private Storage storage; field in class:BackendImpl
129 * @param operation requesting the storage
153 * Wait until there are no more threads accessing the storage. It is assumed
154 * that new threads have been prevented from entering the storage at the time
161 // Still have threads accessing the storage so sleep a little
181 storage = new TracedStorage(configureStorage(cfg, serverContext), cfg.getBackendId());
297 // Responsibility of the underlying storage.
298 return storage
[all...]
H A DVLVIndex.java106 /** The storage associated with this index. */
107 private final Storage storage; field in class:VLVIndex
115 VLVIndex(final BackendVLVIndexCfg config, final State state, final Storage storage, argument
124 this.storage = storage;
219 storage.write(new WriteOperation()
H A DEntryContainer.java152 /** The tree storage. */
153 private final Storage storage; field in class:EntryContainer
207 storage.write(new WriteOperation()
246 storage.write(new WriteOperation()
331 storage.write(new WriteOperation()
336 VLVIndex vlvIndex = new VLVIndex(cfg, state, storage, EntryContainer.this, txn);
369 storage.write(new WriteOperation()
404 * @param storage The storage for this entryContainer.
408 EntryContainer(DN baseDN, String backendID, PluggableBackendCfg config, Storage storage, argument
[all...]
/forgerock/authenticator-android-v2/app/src/test/java/com/forgerock/authenticator/storage/
H A DUpgradeTest.java17 package com.forgerock.authenticator.storage;
39 import static com.forgerock.authenticator.storage.IdentityDatabaseTest.assertNotEquals;
50 * - save to new storage
51 * - update storage version number
52 * - delete old storage
55 * - load from old storage
56 * - load from new storage and compare to old storage
H A DIdentityDatabaseTest.java17 package com.forgerock.authenticator.storage;
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/backends/pluggable/
H A DDN2IDTest.java72 private PDBStorage storage; field in class:DN2IDTest
89 storage = new PDBStorage(createBackendCfg(), serverContext);
90 storage.open(AccessMode.READ_WRITE);
91 storage.write(new WriteOperation()
107 storage.close();
108 storage.removeStorageFiles();
151 storage.read(new ReadOperation<Void>()
234 return storage.read(new ReadOperation<EntryID>()
246 return storage.read(new ReadOperation<List<EntryID>>()
261 return storage
[all...]
H A DDefaultIndexTest.java136 private final Map<TreeName, TreeMap<ByteString, ByteString>> storage = new HashMap<>(); field in class:DefaultIndexTest.DummyWriteableTransaction
145 final TreeMap<ByteString, ByteString> tree = storage.get(treeName);
260 storage.put(name, new TreeMap<ByteString, ByteString>());
266 storage.remove(name);
H A DID2ChildrenCountTest.java71 private PDBStorage storage; field in class:ID2ChildrenCountTest
86 storage = new PDBStorage(createBackendCfg(), serverContext);
87 storage.open(AccessMode.READ_WRITE);
88 storage.write(new WriteOperation()
104 storage.close();
105 storage.removeStorageFiles();
183 storage.write(new WriteOperation()
197 storage.write(new WriteOperation()
209 return storage.read(new ReadOperation<Long>()
220 return storage
[all...]
H A DStateTest.java69 private PDBStorage storage; field in class:StateTest
86 storage = new PDBStorage(createBackendCfg(), serverContext);
87 storage.open(AccessMode.READ_WRITE);
88 storage.write(new WriteOperation()
102 storage.close();
103 storage.removeStorageFiles();
169 storage.write(new WriteOperation()
216 storage.write(new WriteOperation()
228 storage.write(new WriteOperation()
240 return storage
[all...]
/forgerock/opendj2/ext/svnkit/lib/
H A Dsvnkit-javahl16-1.8.5.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/apache/ org/ ...
/forgerock/opendj-b2.6/ext/svnkit/
H A Dsvnkit-javahl.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/apache/ org/ ...

Completed in 86 milliseconds

12