Searched refs:selector (Results 1 - 25 of 84) sorted by relevance

1234

/forgerock/authenticator-ios-v2/ForgeRock-Authenticator/
H A DFRAApplicationAssembly.m42 [definition injectProperty:@selector(identityModel) with:[self identityModel]];
54 [definition useInitializer:@selector(initWithConfiguration:databaseFactory:) parameters:^(TyphoonMethod *initializer) {
64 [definition useInitializer:@selector(initWithSqlOperations:) parameters:^(TyphoonMethod *initializer) {
73 [definition useInitializer:@selector(initWithDatabase:) parameters:^(TyphoonMethod *initializer) {
82 [definition useInitializer:@selector(initWithDatabase:sqlDatabase:) parameters:^(TyphoonMethod *initializer) {
92 [definition useInitializer:@selector(initWithMechanismReader:) parameters:^(TyphoonMethod *initializer) {
101 [definition useInitializer:@selector(initWithHandler:) parameters:^(TyphoonMethod *initializer) {
110 [definition useInitializer:@selector(initWithDatabase:identityModel:) parameters:^(TyphoonMethod *initializer) {
120 [definition injectProperty:@selector(authContextFactory) with:[self authContextFactory]];
126 [definition useInitializer:@selector(ini
[all...]
H A DFRAAccountTableViewController.m73 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleIdentityDatabaseChanged:) name:FRAIdentityDatabaseChangedNotification object:nil];
75 self.timer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(timerCallback:) userInfo:nil repeats:YES];
90 if ([self.tableView respondsToSelector:@selector(setSeparatorInset:)]) {
93 if ([self.tableView respondsToSelector:@selector(setLayoutMargins:)]) {
115 if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {
118 if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {
H A DAppDelegate.m48 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleSplashScreenDidFinish:) name:FRASplashScreenDidFinish object:nil];
49 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleIdentityDatabaseChanged:) name:FRAIdentityDatabaseChangedNotification object:nil];
H A DFRAAccountsTableViewController.m48 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleIdentityDatabaseChanged:) name:FRAIdentityDatabaseChangedNotification object:nil];
50 self.timer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(timerCallback:) userInfo:nil repeats:YES];
178 if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {
181 if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {
H A DFRANotificationsTableViewController.m56 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleIdentityDatabaseChanged:) name:FRAIdentityDatabaseChangedNotification object:nil];
58 self.timer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(timerCallback:) userInfo:nil repeats:YES];
167 if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {
170 if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {
H A DFRAOathMechanismTableViewCellController.m201 self.progressAnimationTimer = [NSTimer scheduledTimerWithTimeInterval:0.1 target:self selector:@selector(timerCallback:) userInfo:nil repeats:YES];
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/protocols/ldap/
H A DLDAPRequestHandler.java76 * need to be registered with the selector.
87 /** The selector that will be used to monitor the client connections. */
88 private final Selector selector; field in class:LDAPRequestHandler
119 selector = Selector.open();
134 selector.selectNow();
219 // registered with the selector.
238 socketChannel.register(selector, SelectionKey.OP_READ, c);
254 keys = selector.keys().toArray(new SelectionKey[0]);
260 selectedKeys = selector.select(1000);
277 Iterator<SelectionKey> iterator = selector
[all...]
H A DLDAPClientConnection.java138 * problem). If possible, it will attempt to use the selector returned
205 Selector selector = getWriteSelector();
206 if (selector == null)
208 // The client connection does not provide a selector, so we'll
210 // selector.
235 // Register with the selector for handling write operations.
236 SelectionKey key = clientChannel.register(selector,
240 selector.select(waitTime);
254 Iterator<SelectionKey> iterator = selector.selectedKeys()
278 selector
[all...]
/forgerock/openam-v13/openam-oauth2-common/openid-connect-core/src/main/java/org/forgerock/openidconnect/
H A DClientBuilder.java52 private String selector; field in class:ClientBuilder
291 * Sets the public key selector.
293 * @param selector Which of the public key types to use.
295 public ClientBuilder setPublicKeySelector(String selector) { argument
296 this.selector = selector;
359 defaultMaxAgeEnabled, tokenEndpointAuthMethod, jwks, jwksUri, x509, selector, sectorIdentifierUri,
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openidconnect/
H A DClientBuilder.java52 private String selector; field in class:ClientBuilder
291 * Sets the public key selector.
293 * @param selector Which of the public key types to use.
295 public ClientBuilder setPublicKeySelector(String selector) { argument
296 this.selector = selector;
359 defaultMaxAgeEnabled, tokenEndpointAuthMethod, jwks, jwksUri, x509, selector, sectorIdentifierUri,
/forgerock/opendj-b2.6/src/server/org/opends/server/protocols/ldap/
H A DLDAPRequestHandler.java84 // need to be registered with the selector.
96 // The selector that will be used to monitor the client connections.
97 private final Selector selector; field in class:LDAPRequestHandler
129 selector = Selector.open();
148 selector.selectNow();
249 // registered with the selector.
268 socketChannel.register(selector, SelectionKey.OP_READ, c);
288 keys = selector.keys().toArray(new SelectionKey[0]);
294 selectedKeys = selector.select(1000);
314 Iterator<SelectionKey> iterator = selector
[all...]
H A DLDAPClientConnection.java149 * problem). If possible, it will attempt to use the selector returned
216 Selector selector = getWriteSelector();
217 if (selector == null)
219 // The client connection does not provide a selector, so we'll
221 // selector.
246 // Register with the selector for handling write operations.
247 SelectionKey key = clientChannel.register(selector,
251 selector.select(waitTime);
265 Iterator<SelectionKey> iterator = selector.selectedKeys()
289 selector
[all...]
/forgerock/opendj2/src/server/org/opends/server/protocols/ldap/
H A DLDAPRequestHandler.java83 // need to be registered with the selector.
95 // The selector that will be used to monitor the client connections.
96 private final Selector selector; field in class:LDAPRequestHandler
128 selector = Selector.open();
147 selector.selectNow();
248 // registered with the selector.
267 socketChannel.register(selector, SelectionKey.OP_READ, c);
287 keys = selector.keys().toArray(new SelectionKey[0]);
293 selectedKeys = selector.select(1000);
313 Iterator<SelectionKey> iterator = selector
[all...]
H A DLDAPClientConnection.java148 * problem). If possible, it will attempt to use the selector returned
215 Selector selector = getWriteSelector();
216 if (selector == null)
218 // The client connection does not provide a selector, so we'll
220 // selector.
245 // Register with the selector for handling write operations.
246 SelectionKey key = clientChannel.register(selector,
250 selector.select(waitTime);
264 Iterator<SelectionKey> iterator = selector.selectedKeys()
288 selector
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/protocols/ldap/
H A DLDAPRequestHandler.java84 // need to be registered with the selector.
96 // The selector that will be used to monitor the client connections.
97 private final Selector selector; field in class:LDAPRequestHandler
129 selector = Selector.open();
148 selector.selectNow();
249 // registered with the selector.
268 socketChannel.register(selector, SelectionKey.OP_READ, c);
288 keys = selector.keys().toArray(new SelectionKey[0]);
294 selectedKeys = selector.select(1000);
314 Iterator<SelectionKey> iterator = selector
[all...]
H A DLDAPClientConnection.java149 * problem). If possible, it will attempt to use the selector returned
216 Selector selector = getWriteSelector();
217 if (selector == null)
219 // The client connection does not provide a selector, so we'll
221 // selector.
246 // Register with the selector for handling write operations.
247 SelectionKey key = clientChannel.register(selector,
251 selector.select(waitTime);
265 Iterator<SelectionKey> iterator = selector.selectedKeys()
289 selector
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/protocols/ldap/
H A DLDAPRequestHandler.java84 // need to be registered with the selector.
96 // The selector that will be used to monitor the client connections.
97 private final Selector selector; field in class:LDAPRequestHandler
129 selector = Selector.open();
148 selector.selectNow();
249 // registered with the selector.
268 socketChannel.register(selector, SelectionKey.OP_READ, c);
288 keys = selector.keys().toArray(new SelectionKey[0]);
294 selectedKeys = selector.select(1000);
314 Iterator<SelectionKey> iterator = selector
[all...]
H A DLDAPClientConnection.java149 * problem). If possible, it will attempt to use the selector returned
216 Selector selector = getWriteSelector();
217 if (selector == null)
219 // The client connection does not provide a selector, so we'll
221 // selector.
246 // Register with the selector for handling write operations.
247 SelectionKey key = clientChannel.register(selector,
251 selector.select(waitTime);
265 Iterator<SelectionKey> iterator = selector.selectedKeys()
289 selector
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/protocols/ldap/
H A DLDAPRequestHandler.java83 // need to be registered with the selector.
95 // The selector that will be used to monitor the client connections.
96 private final Selector selector; field in class:LDAPRequestHandler
128 selector = Selector.open();
147 selector.selectNow();
248 // registered with the selector.
267 socketChannel.register(selector, SelectionKey.OP_READ, c);
287 keys = selector.keys().toArray(new SelectionKey[0]);
293 selectedKeys = selector.select(1000);
313 Iterator<SelectionKey> iterator = selector
[all...]
H A DLDAPClientConnection.java148 * problem). If possible, it will attempt to use the selector returned
215 Selector selector = getWriteSelector();
216 if (selector == null)
218 // The client connection does not provide a selector, so we'll
220 // selector.
245 // Register with the selector for handling write operations.
246 SelectionKey key = clientChannel.register(selector,
250 selector.select(waitTime);
264 Iterator<SelectionKey> iterator = selector.selectedKeys()
288 selector
[all...]
/forgerock/openam-v13/openam-authentication/deviceprint/scripts/src/main/resources/js/
H A Djquery.js70 jQuery = function( selector, context ) {
73 return new jQuery.fn.init( selector, context );
95 // Start with an empty selector
96 selector: "",
788 function Sizzle( selector, context, results, seed ) {
801 if ( typeof selector !== "string" || !selector ||
810 if ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) {
838 push.apply( results, context.getElementsByTagName( selector ) );
849 if ( support.qsa && (!rbuggyQSA || !rbuggyQSA.test( selector )) ) {
[all...]
/forgerock/openam-v13/openam-server-only/src/main/webapp/login_images/
H A Dmaster-style.css48 /** view selector combox box */
49 .view-selector {font-weight:normal}
/forgerock/openam/openam-server-only/src/main/webapp/login_images/
H A Dmaster-style.css48 /** view selector combox box */
49 .view-selector {font-weight:normal}
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/libs/
H A Dpopover-clickaway.js33 this.$element.on("click", this.options.selector, $.proxy(this.clickHandler, this));
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/libs/
H A Dpopover-clickaway.js33 this.$element.on("click", this.options.selector, $.proxy(this.clickHandler, this));

Completed in 114 milliseconds

1234