/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/common/util/ |
H A D | isRealmChanged.jsm | 20 import store from "store/index"; 23 const sessionInfoIntendedRealm = store.getState().server.realm; 24 const authenticatedRealm = store.getState().session.realm;
|
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/session/service/access/persistence/ |
H A D | InternalSessionStoreChain.java | 30 private InternalSessionStore store; field in class:InternalSessionStoreChain 33 public InternalSessionStoreChain(List<InternalSessionStoreStep> steps, InternalSessionStore store) { argument 35 this.store = store; 54 public void store(InternalSession session) throws SessionPersistenceException { method in class:InternalSessionStoreChain 55 new ChainIterator().store(session); 72 return store.getBySessionID(sessionID); 81 return store.getByHandle(sessionHandle); 90 return store.getByRestrictedID(sessionID); 95 public void store(InternalSessio method in class:InternalSessionStoreChain.ChainIterator [all...] |
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/config/wizard/ |
H A D | LDAPStoreWizardPage.java | 41 public LDAPStore store = null; field in class:LDAPStoreWizardPage 89 store = getConfig(); 90 addModel("usingCustomStore", Boolean.valueOf( store != null)); 92 store = ensureConfig(); 93 addModel("store", store); 108 LDAPStore store = getConfig(); 109 if ( store == null ) { 110 store = new LDAPStore(); 112 return store; [all...] |
/forgerock/openidm-v4/openidm-security/src/main/java/org/forgerock/openidm/security/impl/ |
H A D | JcaKeyStoreHandler.java | 47 private KeyStore store; field in class:JcaKeyStoreHandler 60 store = KeyStore.getInstance(type); 61 store.load(in, password.toCharArray()); 69 return store; 74 store = keystore; 75 store(); 79 public void store() throws Exception { method in class:JcaKeyStoreHandler 82 store.store(out, password.toCharArray());
|
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-core/src/main/java/com/sun/identity/config/wizard/ |
H A D | LDAPStoreWizardPage.java | 41 public LDAPStore store = null; field in class:LDAPStoreWizardPage 89 store = getConfig(); 90 addModel("usingCustomStore", Boolean.valueOf( store != null)); 92 store = ensureConfig(); 93 addModel("store", store); 108 LDAPStore store = getConfig(); 109 if ( store == null ) { 110 store = new LDAPStore(); 112 return store; [all...] |
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/store/ |
H A D | index.jsm | 24 const store = createStore(rootReducer, defaultState, enhancers); 26 export default store;
|
/forgerock/openam/openam-core/src/test/java/com/iplanet/dpro/session/service/ |
H A D | AuthenticationSessionStoreTest.java | 36 private AuthenticationSessionStore store; field in class:AuthenticationSessionStoreTest 48 store = new AuthenticationSessionStore(mockAccessManager); 53 store.addSession(mockSession); 54 store.addSession(mockSession); 60 store.addSession(mockSession); 65 store.addSession(mockSession); 66 assertThat(store.getSession(mockSessionID)).isEqualTo(mockSession); 71 store.promoteSession(mockSessionID); 76 store.addSession(mockSession); 77 store [all...] |
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/cts/monitoring/impl/queue/ |
H A D | MonitoredResultHandlerFactory.java | 36 private final CTSOperationsMonitoringStore store; field in class:MonitoredResultHandlerFactory 40 * @param store Non null store to report operations to. 43 public MonitoredResultHandlerFactory(AsyncResultHandlerFactory factory, CTSOperationsMonitoringStore store) { argument 45 this.store = store; 53 return new TokenMonitoringResultHandler(factory.getCreateHandler(), store, CTSOperation.CREATE); 61 return new TokenMonitoringResultHandler(factory.getReadHandler(), store, CTSOperation.READ); 69 return new TokenMonitoringResultHandler(factory.getUpdateHandler(), store, CTSOperation.UPDATE); 77 return new DefaultMonitoringResultHandler<>(factory.getDeleteHandler(), store, CTSOperatio [all...] |
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-core/src/main/java/org/forgerock/openam/sm/datalayer/store/ |
H A D | NotFoundException.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;
|
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/cts/monitoring/impl/queue/ |
H A D | MonitoredResultHandlerFactory.java | 36 private final CTSOperationsMonitoringStore store; field in class:MonitoredResultHandlerFactory 40 * @param store Non null store to report operations to. 43 public MonitoredResultHandlerFactory(AsyncResultHandlerFactory factory, CTSOperationsMonitoringStore store) { argument 45 this.store = store; 53 return new TokenMonitoringResultHandler(factory.getCreateHandler(), store, CTSOperation.CREATE); 61 return new TokenMonitoringResultHandler(factory.getReadHandler(), store, CTSOperation.READ); 69 return new TokenMonitoringResultHandler(factory.getUpdateHandler(), store, CTSOperation.UPDATE); 77 return new DefaultMonitoringResultHandler<String, CoreTokenException>(factory.getDeleteHandler(), store, CTSOperatio [all...] |
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/com/iplanet/dpro/session/service/ |
H A D | AuthenticationSessionStore.java | 30 * Stores sessions used for authentication which must not yet be written to the store. 31 * This comprises both sessions which shouldn't be written to the store (e.g. stateless, authentication), 32 * as well as sessions which have yet to be added to the store. 35 * value, after which they will be removed from this store. 39 private final ConcurrentHashMap<SessionID, InternalSession> store = new ConcurrentHashMap<>(); field in class:AuthenticationSessionStore 52 throw new IllegalStateException("Session was added to temporary store when it is already persisted."); 55 if (store.containsKey(session.getSessionID())) { 56 throw new IllegalStateException("Session was added to temporary store twice."); 59 store.put(session.getSessionID(), session); 65 * Side effect: Calling this method will cull any expired Sessions from this store [all...] |
/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/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-federation/openam-federation-library/src/main/csharpsource/Fedlet/Fedlet/source/Common/ |
H A D | FedletCertificateFactory.cs | 47 /// Finds the X509 certificate in this machine's key store.
58 X509Store store = new X509Store(StoreLocation.LocalMachine);
63 store.Open(OpenFlags.ReadOnly);
69 X509Certificate2Enumerator certEnum = store.Certificates.GetEnumerator();
92 if (store != null)
94 store.Close();
|
/forgerock/openam/openam-federation/openam-federation-library/src/main/csharpsource/Fedlet/Fedlet/source/Common/ |
H A D | FedletCertificateFactory.cs | 47 /// Finds the X509 certificate in this machine's key store.
58 X509Store store = new X509Store(StoreLocation.LocalMachine);
63 store.Open(OpenFlags.ReadOnly);
69 X509Certificate2Enumerator certEnum = store.Certificates.GetEnumerator();
92 if (store != null)
94 store.Close();
|
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/sdk/ |
H A D | AMResourceImpl.java | 52 store(); 60 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();
|