Searched defs:factory (Results 151 - 175 of 330) sorted by relevance

1234567891011>>

/forgerock/openam-v13/openam-rest/src/main/java/org/forgerock/openam/rest/
H A DLocalSSOTokenSessionModule.java69 private SSOTokenFactory factory; field in class:LocalSSOTokenSessionModule
84 * @param factory Required for generation of SSOTokens.
87 public LocalSSOTokenSessionModule(AuthnRequestUtils requestUtils, SSOTokenFactory factory, argument
90 this.factory = factory;
105 factory = InjectorHolder.getInstance(SSOTokenFactory.class);
282 return factory;
/forgerock/openam-v13/openam-audit/openam-audit-core/src/test/java/org/forgerock/openam/audit/
H A DAbstractHttpAccessAuditFilterTest.java237 public MockAccessAuditFilter(AuditEventPublisher publisher, AuditEventFactory factory) { argument
238 super(AUTHENTICATION, publisher, factory);
/forgerock/openam-v13/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/rest/
H A DPolicyResource.java77 private final PolicyEvaluatorFactory factory; field in class:PolicyResource
81 public PolicyResource(final PolicyEvaluatorFactory factory, argument
86 Reject.ifNull(factory, requestFactory, parser, provider, handler);
87 this.factory = factory;
116 final PolicyEvaluator evaluator = factory.getEvaluator(request.getRestSubject(), request.getApplication());
/forgerock/openam-v13/openam-entitlements/src/test/java/org/forgerock/openam/entitlement/rest/
H A DPolicyResourceEvaluationTest.java58 private PolicyEvaluatorFactory factory; field in class:PolicyResourceEvaluationTest
87 policyResource = new PolicyResource(factory, requestFactory, parser,
100 given(factory.getEvaluator(restSubject, "some-application")).willReturn(evaluator);
119 verify(factory).getEvaluator(restSubject, "some-application");
124 policyRequest, factory, evaluator, parser);
136 given(factory.getEvaluator(restSubject, "some-application")).willReturn(evaluator);
155 verify(factory).getEvaluator(restSubject, "some-application");
161 policyRequest, factory, evaluator, parser);
184 policyRequest, factory, evaluator, parser);
201 policyRequest, factory, evaluato
[all...]
/forgerock/openam-v13/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/steps/
H A DUpgradeOAuth2AuthModulesStep.java65 @DataLayer(ConnectionType.DATA_LAYER) final ConnectionFactory factory) {
66 super(adminTokenAction, factory);
64 UpgradeOAuth2AuthModulesStep(final PrivilegedAction<SSOToken> adminTokenAction, @DataLayer(ConnectionType.DATA_LAYER) final ConnectionFactory factory) argument
H A DUpgradeOAuth2ClientStep.java78 @DataLayer(ConnectionType.DATA_LAYER) final ConnectionFactory factory) {
79 super(adminTokenAction, factory);
77 UpgradeOAuth2ClientStep(final PrivilegedAction<SSOToken> adminTokenAction, @DataLayer(ConnectionType.DATA_LAYER) final ConnectionFactory factory) argument
H A DUpgradeOAuth2ProviderStep.java85 @DataLayer(ConnectionType.DATA_LAYER) final ConnectionFactory factory) {
86 super(adminTokenAction, factory);
84 UpgradeOAuth2ProviderStep(final PrivilegedAction<SSOToken> adminTokenAction, @DataLayer(ConnectionType.DATA_LAYER) final ConnectionFactory factory) argument
/forgerock/openam-v13/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/steps/scripting/
H A DScriptedAuthModulesStep.java78 @DataLayer(ConnectionType.DATA_LAYER) final ConnectionFactory factory,
80 super(adminTokenAction, factory);
77 ScriptedAuthModulesStep(final PrivilegedAction<SSOToken> adminTokenAction, @DataLayer(ConnectionType.DATA_LAYER) final ConnectionFactory factory, ScriptingServiceFactory scriptingServiceFactory) argument
/forgerock/openam/openam-rest/src/main/java/org/forgerock/openam/rest/
H A DLocalSSOTokenSessionModule.java69 private volatile SSOTokenFactory factory; field in class:LocalSSOTokenSessionModule
84 * @param factory Required for generation of SSOTokens.
87 public LocalSSOTokenSessionModule(AuthnRequestUtils requestUtils, SSOTokenFactory factory, argument
90 this.factory = factory;
106 factory = InjectorHolder.getInstance(SSOTokenFactory.class);
282 return factory;
/forgerock/openam/openam-rest/src/test/java/org/forgerock/openam/rest/authz/
H A DPrivilegeAuthzModuleTest.java112 private DelegationPermissionFactory factory; field in class:PrivilegeAuthzModuleTest
148 module = new CrestPrivilegeAuthzModule(evaluator, definitions, factory, coreWrapper, ssoTokenManager);
171 given(factory.newInstance("/abc", "rest", "1.0", "policies", "read", actions, EXTENSIONS))
201 given(factory.newInstance("/abc", "rest", "1.0", "policies", "read", actions, EXTENSIONS))
233 given(factory.newInstance("/abc", "rest", "1.0", "policies", "modify", actions, EXTENSIONS))
264 given(factory.newInstance("/abc", "rest", "1.0", "policies", "modify", actions, EXTENSIONS))
295 given(factory.newInstance("/abc", "rest", "1.0", "policies", "modify", actions, EXTENSIONS))
326 given(factory.newInstance("/abc", "rest", "1.0", "policies", "modify", actions, EXTENSIONS))
357 given(factory.newInstance("/abc", "rest", "1.0", "policies", "evaluate", actions, EXTENSIONS))
388 given(factory
[all...]
/forgerock/openam/openam-audit/openam-audit-core/src/test/java/org/forgerock/openam/audit/
H A DAbstractHttpAccessAuditFilterTest.java237 public MockAccessAuditFilter(AuditEventPublisher publisher, AuditEventFactory factory) { argument
238 super(AUTHENTICATION, publisher, factory);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/setup/
H A DUserIdRepo.java97 private ConnectionFactory factory; field in class:UserIdRepo
119 factory = null;
404 if (factory == null) {
405 factory = new LDAPConnectionFactory(hostname, port, options);
409 if (factory != null) {
410 factory.close();
415 return factory;
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/core/guice/
H A DCoreGuiceModule.java240 ServerGroupConfiguration getCTSServerConfiguration(SMSConfigurationFactory factory) { argument
241 return factory.getSMSConfiguration();
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/sm/datalayer/impl/ldap/
H A DCTSDJLDAPv3PersistentSearch.java49 * Generate a new CTSDJLDAPv3PersistentSearch, providing the connection factory to use to produce
56 * @param factory Used to produce connections down to the CTS.
60 SearchScope searchScope, ConnectionFactory factory, String... attributeNames) {
61 super(retry, searchBaseDN, searchFilter, searchScope, factory, attributeNames);
59 CTSDJLDAPv3PersistentSearch(int retry, DN searchBaseDN, Filter searchFilter, SearchScope searchScope, ConnectionFactory factory, String... attributeNames) argument
/forgerock/openam/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/rest/
H A DPolicyResource.java117 private final PolicyEvaluatorFactory factory; field in class:PolicyResource
121 public PolicyResource(final PolicyEvaluatorFactory factory, argument
126 Reject.ifNull(factory, requestFactory, parser, provider, handler);
127 this.factory = factory;
193 final PolicyEvaluator evaluator = factory.getEvaluator(request.getRestSubject(), request.getApplication());
/forgerock/openam/openam-entitlements/src/test/java/org/forgerock/openam/entitlement/rest/
H A DPolicyResourceEvaluationTest.java61 private PolicyEvaluatorFactory factory; field in class:PolicyResourceEvaluationTest
93 policyResource = new PolicyResource(factory, requestFactory, parser,
112 given(factory.getEvaluator(restSubject, "some-application")).willReturn(evaluator);
131 verify(factory).getEvaluator(restSubject, "some-application");
136 policyRequest, factory, evaluator, parser);
149 given(factory.getEvaluator(restSubject, "some-application")).willReturn(evaluator);
168 verify(factory).getEvaluator(restSubject, "some-application");
174 policyRequest, factory, evaluator, parser);
196 verifyNoMoreInteractions(requestFactory, policyRequest, factory, evaluator, parser);
214 policyRequest, factory, evaluato
[all...]
/forgerock/openam/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/steps/
H A DUpgradeOAuth2AuthModulesStep.java65 @DataLayer(ConnectionType.DATA_LAYER) final ConnectionFactory factory) {
66 super(adminTokenAction, factory);
64 UpgradeOAuth2AuthModulesStep(final PrivilegedAction<SSOToken> adminTokenAction, @DataLayer(ConnectionType.DATA_LAYER) final ConnectionFactory factory) argument
H A DUpgradeOAuth2ClientStep.java78 @DataLayer(ConnectionType.DATA_LAYER) final ConnectionFactory factory) {
79 super(adminTokenAction, factory);
77 UpgradeOAuth2ClientStep(final PrivilegedAction<SSOToken> adminTokenAction, @DataLayer(ConnectionType.DATA_LAYER) final ConnectionFactory factory) argument
H A DUpgradeOAuth2ProviderStep.java100 @DataLayer(ConnectionType.DATA_LAYER) final ConnectionFactory factory) {
101 super(adminTokenAction, factory);
99 UpgradeOAuth2ProviderStep(final PrivilegedAction<SSOToken> adminTokenAction, @DataLayer(ConnectionType.DATA_LAYER) final ConnectionFactory factory) argument
/forgerock/openam/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/steps/scripting/
H A DScriptedAuthModulesStep.java78 @DataLayer(ConnectionType.DATA_LAYER) final ConnectionFactory factory,
80 super(adminTokenAction, factory);
77 ScriptedAuthModulesStep(final PrivilegedAction<SSOToken> adminTokenAction, @DataLayer(ConnectionType.DATA_LAYER) final ConnectionFactory factory, ScriptingServiceFactory scriptingServiceFactory) argument
/forgerock/opendj-b2.6/src/server/org/opends/server/schema/
H A DTimeBasedMatchingRuleFactory.java76 * This class acts as a factory for time-based matching rules.
93 //A Collection of matching rules managed by this factory.
519 IndexQueryFactory<T> factory) throws DirectoryException
521 return factory.createRangeMatchQuery(indexer
617 IndexQueryFactory<T> factory) throws DirectoryException
619 return factory.createRangeMatchQuery(indexer
1188 IndexQueryFactory<T> factory) throws DirectoryException
1204 queries.add(factory.createExactMatchQuery(
1211 queries.add(factory.createExactMatchQuery(
1218 queries.add(factory
518 createIndexQuery(ByteSequence assertionValue, IndexQueryFactory<T> factory) argument
616 createIndexQuery(ByteSequence assertionValue, IndexQueryFactory<T> factory) argument
1187 createIndexQuery(ByteSequence assertionValue, IndexQueryFactory<T> factory) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/tools/dsconfig/
H A DCreateSubCommandHandler.java1158 ManagementContextFactory factory) throws ArgumentException,
1173 ManagementContext context = factory.getManagementContext(app);
1157 run(ConsoleApplication app, ManagementContextFactory factory) argument
H A DHelpSubCommandHandler.java255 TextTablePrinter factory = new TextTablePrinter(p);
256 factory.setDisplayHeadings(false);
257 factory.setColumnWidth(0, HEADING_WIDTH);
258 factory.setColumnWidth(1, HEADING_SEPARATOR.length());
259 factory.setColumnWidth(4, 0);
260 factory.setPadding(0);
262 builder.print(factory);
291 TextTablePrinter factory = new TextTablePrinter(p);
292 factory.setDisplayHeadings(false);
293 factory
819 run(ConsoleApplication app, ManagementContextFactory factory) argument
[all...]
H A DSetPropSubCommandHandler.java694 ManagementContextFactory factory) throws ArgumentException,
709 ManagementContext context = factory.getManagementContext(app);
693 run(ConsoleApplication app, ManagementContextFactory factory) argument
/forgerock/opendj2/src/server/org/opends/server/extensions/
H A DPBKDF2PasswordStorageScheme.java82 /** The factory used to generate the PBKDF2 hashes. */
83 private SecretKeyFactory factory; field in class:PBKDF2PasswordStorageScheme
113 factory = SecretKeyFactory.getInstance(MESSAGE_DIGEST_ALGORITHM_PBKDF2);
345 final SecretKeyFactory factory = SecretKeyFactory.getInstance(MESSAGE_DIGEST_ALGORITHM_PBKDF2);
346 return encodeWithRandomSalt(plaintext, saltBytes, iterations, random, factory);
359 int iterations, final SecretKeyFactory factory) throws DirectoryException
366 return factory.generateSecret(spec).getEncoded();
389 encodeWithSalt(plaintext, saltBytes, iterations, factory);
404 return encodeWithRandomSalt(plaintext, saltBytes, iterations, random, factory);
409 int iterations, SecureRandom random, final SecretKeyFactory factory) throw
358 encodeWithSalt(ByteSequence plaintext, byte[] saltBytes, int iterations, final SecretKeyFactory factory) argument
408 encodeWithRandomSalt(ByteSequence plaintext, byte[] saltBytes, int iterations, SecureRandom random, final SecretKeyFactory factory) argument
[all...]

Completed in 116 milliseconds

1234567891011>>