/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/sm/datalayer/store/ |
H A D | NotFoundException.java | 17 package org.forgerock.openam.sm.datalayer.store;
|
H A D | ServerException.java | 17 package org.forgerock.openam.sm.datalayer.store;
|
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/sm/datalayer/store/ |
H A D | NotFoundException.java | 17 package org.forgerock.openam.sm.datalayer.store;
|
H A D | ServerException.java | 17 package org.forgerock.openam.sm.datalayer.store;
|
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/core/guice/ |
H A D | ServletContextCache.java | 29 public static void store(ServletContext servletContext) { method in class:ServletContextCache
|
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/cts/monitoring/impl/persistence/ |
H A D | CtsPersistenceOperationsDelegate.java | 33 * Used to query the CTS persistence store and return data to the monitoring service 37 private final CTSPersistentStore store; field in class:CtsPersistenceOperationsDelegate 40 public CtsPersistenceOperationsDelegate(CTSPersistentStore store) { argument 41 this.store = store; 45 * Counts the number of tokens in the persistent store that match the requested type. 48 * @return Zero or positive integer of the number of tokens in the store. 59 return store.attributeQuery(tokenFilter).size(); 63 * Counts all Tokens within the CTS Persistent store. All tokens are considered regardless of TokenType. 70 return store [all...] |
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/cts/monitoring/impl/queue/ |
H A D | DefaultMonitoringResultHandler.java | 29 private final CTSOperationsMonitoringStore store; field in class:DefaultMonitoringResultHandler 34 * @param store The monitoring store to notify. 35 * @param operation The CTS Operation to report to the store. 37 public DefaultMonitoringResultHandler(ResultHandler<T, E> handler, CTSOperationsMonitoringStore store, CTSOperation operation) { argument 39 this.store = store; 59 store.addTokenOperation(null, operation, true); 69 store.addTokenOperation(null, operation, false);
|
H A D | TokenMonitoringResultHandler.java | 29 private final CTSOperationsMonitoringStore store; field in class:TokenMonitoringResultHandler 34 * @param store Non null store to report operations to. 35 * @param operation Non null operation type to signal to the store. 37 public TokenMonitoringResultHandler(ResultHandler<Token, CoreTokenException> handler, CTSOperationsMonitoringStore store, argument 40 this.store = store; 54 * @param result The result to log in the operation store, then delegates to wrapped handler. 58 store.addTokenOperation(result, operation, true); 63 * @param error The error to log in the monitoring store, the [all...] |
/forgerock/openam-v13/openam-scripting/src/main/java/org/forgerock/openam/scripting/api/ |
H A D | ScriptedIdentity.java | 104 public void store() { method in class:ScriptedIdentity 106 amIdentity.store();
|
/forgerock/openam-v13/openam-authentication/deviceprint/module/src/main/java/org/forgerock/openam/authentication/modules/deviceprint/ |
H A D | AMIdentityWrapper.java | 57 * Delegates to the store method on the AMIdentity instance. 59 public void store() throws SSOException, IdRepoException { method in class:AMIdentityWrapper 60 amIdentity.store();
|
/forgerock/openam-v13/openam-authentication/openam-auth-device-id/src/main/java/org/forgerock/openam/authentication/modules/deviceprint/ |
H A D | AMIdentityWrapper.java | 59 * Delegates to the store method on the AMIdentity instance. 61 public void store() throws SSOException, IdRepoException { method in class:AMIdentityWrapper 62 amIdentity.store();
|
/forgerock/openidm-v4/openidm-security/src/main/java/org/forgerock/openidm/security/ |
H A D | KeyStoreHandler.java | 45 public void store() throws Exception; method in interface:KeyStoreHandler
|
/forgerock/openidm-v4/openidm-security/src/main/java/org/forgerock/openidm/security/impl/ |
H A D | CertificateResourceProvider.java | 42 public CertificateResourceProvider(String resourceName, KeyStoreHandler store, KeyStoreManager manager, argument 44 super(resourceName, store, manager, repoService); 52 store.getStore().setCertificateEntry(alias, cert); 53 store.store(); 58 Certificate cert = store.getStore().getCertificate(alias); 68 store.getStore().setCertificateEntry(alias, cert); 69 store.store();
|
H A D | PrivateKeyResourceProvider.java | 52 public PrivateKeyResourceProvider(String resourceName, KeyStoreHandler store, KeyStoreManager manager, RepositoryService repoService) { argument 53 super(resourceName, store, manager, repoService); 72 store.getStore().setEntry(alias, new PrivateKeyEntry(privateKey, certChain), 73 new KeyStore.PasswordProtection(store.getPassword().toCharArray())); 74 store.store(); 79 Key key = store.getStore().getKey(alias, store.getPassword().toCharArray()); 94 store.getStore().setEntry(alias, new PrivateKeyEntry(key, new Certificate[]{cert}), 95 new KeyStore.PasswordProtection(store [all...] |
/forgerock/openam/openam-scripting/src/main/java/org/forgerock/openam/scripting/api/ |
H A D | ScriptedIdentity.java | 104 public void store() { method in class:ScriptedIdentity 106 amIdentity.store();
|
/forgerock/openam/openam-authentication/openam-auth-device-id/src/main/java/org/forgerock/openam/authentication/modules/deviceprint/ |
H A D | AMIdentityWrapper.java | 59 * Delegates to the store method on the AMIdentity instance. 61 public void store() throws SSOException, IdRepoException { method in class:AMIdentityWrapper 62 amIdentity.store();
|
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/core/guice/ |
H A D | ServletContextCache.java | 29 public static void store(ServletContext servletContext) { method in class:ServletContextCache
|
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/cts/monitoring/impl/persistence/ |
H A D | CtsPersistenceOperationsDelegate.java | 33 * Used to query the CTS persistence store and return data to the monitoring service 37 private final CTSPersistentStore store; field in class:CtsPersistenceOperationsDelegate 40 public CtsPersistenceOperationsDelegate(CTSPersistentStore store) { argument 41 this.store = store; 45 * Counts the number of tokens in the persistent store that match the requested type. 48 * @return Zero or positive integer of the number of tokens in the store. 59 return store.attributeQuery(tokenFilter).size(); 63 * Counts all Tokens within the CTS Persistent store. All tokens are considered regardless of TokenType. 70 return store [all...] |
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/cts/monitoring/impl/queue/ |
H A D | DefaultMonitoringResultHandler.java | 29 private final CTSOperationsMonitoringStore store; field in class:DefaultMonitoringResultHandler 34 * @param store The monitoring store to notify. 35 * @param operation The CTS Operation to report to the store. 37 public DefaultMonitoringResultHandler(ResultHandler<T, E> handler, CTSOperationsMonitoringStore store, CTSOperation operation) { argument 39 this.store = store; 59 store.addTokenOperation(null, operation, true); 69 store.addTokenOperation(null, operation, false);
|
H A D | TokenMonitoringResultHandler.java | 29 private final CTSOperationsMonitoringStore store; field in class:TokenMonitoringResultHandler 34 * @param store Non null store to report operations to. 35 * @param operation Non null operation type to signal to the store. 37 public TokenMonitoringResultHandler(ResultHandler<Token, CoreTokenException> handler, CTSOperationsMonitoringStore store, argument 40 this.store = store; 54 * @param result The result to log in the operation store, then delegates to wrapped handler. 58 store.addTokenOperation(result, operation, true); 63 * @param error The error to log in the monitoring store, the [all...] |
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/session/service/access/persistence/ |
H A D | InternalSessionStore.java | 51 * Stores the InternalSession in the cache. This will also store any associated references 60 * @param session Non null InternalSession to store. 63 void store(InternalSession session) throws SessionPersistenceException; method in interface:InternalSessionStore
|
/forgerock/openam/openam-notifications-integration/src/main/java/org/forgerock/openam/notifications/integration/ |
H A D | NotificationsGuiceModule.java | 84 NotificationBroker notificationBroker(CTSPersistentStore store, argument 90 return new CTSNotificationBroker(store, broker, queueSize, tokenExpirySeconds,
|
/forgerock/openam-v13/openam-core/src/test/java/org/forgerock/openam/sm/datalayer/store/ |
H A D | TokenDataStoreTest.java | 17 package org.forgerock.openam.sm.datalayer.store; 47 private TokenDataStore<Object> store; field in class:TokenDataStoreTest 57 this.store = new TokenDataStore<Object>(adapter, taskExecutor, taskFactory, mock(Debug.class)); 75 store.create(new Object()); 97 store.create(new Object()); 112 store.create(new Object()); 133 Object result = store.read("123"); 157 store.read("123"); 176 store.read("123"); 196 store [all...] |
/forgerock/openam/openam-core/src/test/java/org/forgerock/openam/sm/datalayer/store/ |
H A D | TokenDataStoreTest.java | 17 package org.forgerock.openam.sm.datalayer.store; 45 private TokenDataStore<Object> store; field in class:TokenDataStoreTest 55 this.store = new TokenDataStore<>(adapter, taskExecutor, taskFactory, mock(Debug.class)); 66 store.create(new Object()); 81 store.create(new Object()); 96 store.create(new Object()); 110 Object result = store.read("123"); 127 store.read("123"); 139 store.read("123"); 152 store [all...] |
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/services/cdm/ |
H A D | ClientTypesManager.java | 112 * Save changed to persistent store. 121 public void store(SSOToken token) throws SMSException, SSOException; method in interface:ClientTypesManager 124 * Updates client data. Need to call <code>store()</code> after this
|