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

1234567891011>>

/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/common/util/
H A DisRealmChanged.jsm20 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 DInternalSessionStoreChain.java30 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 DLDAPStoreWizardPage.java41 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 DJcaKeyStoreHandler.java47 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 DCertificateResourceProvider.java42 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 DPrivateKeyResourceProvider.java52 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 DLDAPStoreWizardPage.java41 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 Dindex.jsm24 const store = createStore(rootReducer, defaultState, enhancers);
26 export default store;
/forgerock/openam/openam-core/src/test/java/com/iplanet/dpro/session/service/
H A DAuthenticationSessionStoreTest.java36 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 DMonitoredResultHandlerFactory.java36 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 DDefaultMonitoringResultHandler.java29 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 DTokenMonitoringResultHandler.java29 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 DNotFoundException.java17 package org.forgerock.openam.sm.datalayer.store;
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/sm/datalayer/store/
H A DNotFoundException.java17 package org.forgerock.openam.sm.datalayer.store;
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/cts/monitoring/impl/queue/
H A DMonitoredResultHandlerFactory.java36 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 DDefaultMonitoringResultHandler.java29 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 DTokenMonitoringResultHandler.java29 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 DAuthenticationSessionStore.java30 * 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 DCtsPersistenceOperationsDelegate.java33 * 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 DCtsPersistenceOperationsDelegate.java33 * 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 DFedletCertificateFactory.cs47 /// 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 DFedletCertificateFactory.cs47 /// 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 DAMResourceImpl.java52 store();
60 store();
/forgerock/openam-v13/openam-authentication/deviceprint/module/src/main/java/org/forgerock/openam/authentication/modules/deviceprint/
H A DAMIdentityWrapper.java57 * 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 DAMIdentityWrapper.java59 * Delegates to the store method on the AMIdentity instance.
61 public void store() throws SSOException, IdRepoException { method in class:AMIdentityWrapper
62 amIdentity.store();

Completed in 622 milliseconds

1234567891011>>