Searched refs:delegate (Results 1 - 25 of 201) sorted by relevance

123456789

/forgerock/openam-v13/openam-audit/openam-audit-context/src/main/java/org/forgerock/openam/audit/context/
H A DAuditRequestContextPropagatingCallable.java30 private final Callable<T> delegate; field in class:AuditRequestContextPropagatingCallable
32 AuditRequestContextPropagatingCallable(Callable<T> delegate) { argument
33 this.delegate = delegate;
40 return delegate.call();
H A DAuditRequestContextPropagatingRunnable.java27 private final Runnable delegate; field in class:AuditRequestContextPropagatingRunnable
32 * @param delegate The worker thread.
34 public AuditRequestContextPropagatingRunnable(Runnable delegate) { argument
35 this.delegate = delegate;
42 delegate.run();
H A DExecutorServiceConfigurator.java34 private final ThreadPoolExecutor delegate; field in class:ExecutorServiceConfigurator
39 * @param delegate The {@code ThreadPoolExecutor} instance.
41 public ExecutorServiceConfigurator(ThreadPoolExecutor delegate) { argument
42 Reject.ifNull(delegate);
43 this.delegate = delegate;
53 delegate.setCorePoolSize(corePoolSize);
63 return delegate.getCorePoolSize();
73 delegate.setMaximumPoolSize(maximumPoolSize);
83 return delegate
[all...]
H A DAuditRequestContextPropagatingExecutorService.java38 final ExecutorService delegate; field in class:AuditRequestContextPropagatingExecutorService
43 * @param delegate The delegate {@code ExecutorService}.
45 public AuditRequestContextPropagatingExecutorService(ExecutorService delegate) { argument
46 this.delegate = delegate;
50 * Gets the {@link ExecutorService} delegate assigned to this instance.
52 * @return The {@link ExecutorService} delegate.
55 return delegate;
63 delegate
183 wrap(Runnable delegate) argument
187 wrap(Callable<T> delegate) argument
[all...]
/forgerock/openam/openam-audit/openam-audit-context/src/main/java/org/forgerock/openam/audit/context/
H A DAuditRequestContextPropagatingCallable.java30 private final Callable<T> delegate; field in class:AuditRequestContextPropagatingCallable
32 AuditRequestContextPropagatingCallable(Callable<T> delegate) { argument
33 this.delegate = delegate;
40 return delegate.call();
H A DAuditRequestContextPropagatingRunnable.java27 private final Runnable delegate; field in class:AuditRequestContextPropagatingRunnable
32 * @param delegate The worker thread.
34 public AuditRequestContextPropagatingRunnable(Runnable delegate) { argument
35 this.delegate = delegate;
42 delegate.run();
H A DExecutorServiceConfigurator.java34 private final ThreadPoolExecutor delegate; field in class:ExecutorServiceConfigurator
39 * @param delegate The {@code ThreadPoolExecutor} instance.
41 public ExecutorServiceConfigurator(ThreadPoolExecutor delegate) { argument
42 Reject.ifNull(delegate);
43 this.delegate = delegate;
53 delegate.setCorePoolSize(corePoolSize);
63 return delegate.getCorePoolSize();
73 delegate.setMaximumPoolSize(maximumPoolSize);
83 return delegate
[all...]
H A DAuditRequestContextPropagatingExecutorService.java38 final ExecutorService delegate; field in class:AuditRequestContextPropagatingExecutorService
43 * @param delegate The delegate {@code ExecutorService}.
45 public AuditRequestContextPropagatingExecutorService(ExecutorService delegate) { argument
46 this.delegate = delegate;
50 * Gets the {@link ExecutorService} delegate assigned to this instance.
52 * @return The {@link ExecutorService} delegate.
55 return delegate;
63 delegate
183 wrap(Runnable delegate) argument
187 wrap(Callable<T> delegate) argument
[all...]
/forgerock/openam-v13/openam-shared/src/main/java/org/forgerock/openam/utils/
H A DPerThreadDocumentBuilderProvider.java39 * Initialises the per-thread document builder cache with the given maximum size and delegate provider instance.
43 * @param delegate the underlying provider to create fresh instances.
46 * @throws NullPointerException if the delegate provider is null.
48 PerThreadDocumentBuilderProvider(final DocumentBuilderProvider delegate, final int maxSize) { argument
49 if (delegate == null) {
55 this.validatingDBCache = new PerThreadDBCache(delegate, true, maxSize);
56 this.nonValidatingDBCache = new PerThreadDBCache(delegate, false, maxSize);
60 * Initialises the thread-local document builder with the given delegate provider instance and the default maximum
62 * @param delegate the delegate t
65 PerThreadDocumentBuilderProvider(final DocumentBuilderProvider delegate) argument
86 private final DocumentBuilderProvider delegate; field in class:PerThreadDocumentBuilderProvider.PerThreadDBCache
88 PerThreadDBCache(DocumentBuilderProvider delegate, boolean validating, int maxSize) argument
[all...]
H A DPerThreadCipherProvider.java42 * @param delegate the non-null provider to get ciphers from.
44 * @throws NullPointerException if the delegate is null
47 public PerThreadCipherProvider(final CipherProvider delegate, final int maxSize) { argument
48 if (delegate == null) {
49 throw new NullPointerException("Must specify a valid delegate CipherProvider");
57 return delegate.getCipher();
65 * @param delegate The {@code CipherProvider} delegate.
67 public PerThreadCipherProvider(CipherProvider delegate) { argument
68 this(delegate, DEFAULT_MAX_SIZ
[all...]
H A DPerThreadSAXParserProvider.java37 * Initialises the parser cache with the given delegate parser provider and maximum cache size. Note that two
41 * @param delegate the underlying parser provider to use to create new parser instances.
43 * @throws NullPointerException if the delegate provider is null.
46 PerThreadSAXParserProvider(SAXParserProvider delegate, int maxSize) { argument
47 if (delegate == null) {
53 validatingParserCache = new PerThreadSAXParserCache(maxSize, true, delegate);
54 nonValidatingParserCache = new PerThreadSAXParserCache(maxSize, false, delegate);
58 * Initialises the per-thread cache with the given delegate provider and the default (500) cache size.
60 * @param delegate the delegate parse
63 PerThreadSAXParserProvider(SAXParserProvider delegate) argument
95 private final SAXParserProvider delegate; field in class:PerThreadSAXParserProvider.PerThreadSAXParserCache
97 PerThreadSAXParserCache(int maxSize, boolean validating, SAXParserProvider delegate) argument
[all...]
/forgerock/openam/openam-shared/src/main/java/org/forgerock/openam/utils/
H A DPerThreadDocumentBuilderProvider.java39 * Initialises the per-thread document builder cache with the given maximum size and delegate provider instance.
43 * @param delegate the underlying provider to create fresh instances.
46 * @throws NullPointerException if the delegate provider is null.
48 PerThreadDocumentBuilderProvider(final DocumentBuilderProvider delegate, final int maxSize) { argument
49 if (delegate == null) {
55 this.validatingDBCache = new PerThreadDBCache(delegate, true, maxSize);
56 this.nonValidatingDBCache = new PerThreadDBCache(delegate, false, maxSize);
60 * Initialises the thread-local document builder with the given delegate provider instance and the default maximum
62 * @param delegate the delegate t
65 PerThreadDocumentBuilderProvider(final DocumentBuilderProvider delegate) argument
86 private final DocumentBuilderProvider delegate; field in class:PerThreadDocumentBuilderProvider.PerThreadDBCache
88 PerThreadDBCache(DocumentBuilderProvider delegate, boolean validating, int maxSize) argument
[all...]
H A DPerThreadCipherProvider.java42 * @param delegate the non-null provider to get ciphers from.
44 * @throws NullPointerException if the delegate is null
47 public PerThreadCipherProvider(final CipherProvider delegate, final int maxSize) { argument
48 if (delegate == null) {
49 throw new NullPointerException("Must specify a valid delegate CipherProvider");
57 return delegate.getCipher();
65 * @param delegate The {@code CipherProvider} delegate.
67 public PerThreadCipherProvider(CipherProvider delegate) { argument
68 this(delegate, DEFAULT_MAX_SIZ
[all...]
H A DPerThreadSAXParserProvider.java37 * Initialises the parser cache with the given delegate parser provider and maximum cache size. Note that two
41 * @param delegate the underlying parser provider to use to create new parser instances.
43 * @throws NullPointerException if the delegate provider is null.
46 PerThreadSAXParserProvider(SAXParserProvider delegate, int maxSize) { argument
47 if (delegate == null) {
53 validatingParserCache = new PerThreadSAXParserCache(maxSize, true, delegate);
54 nonValidatingParserCache = new PerThreadSAXParserCache(maxSize, false, delegate);
58 * Initialises the per-thread cache with the given delegate provider and the default (500) cache size.
60 * @param delegate the delegate parse
63 PerThreadSAXParserProvider(SAXParserProvider delegate) argument
95 private final SAXParserProvider delegate; field in class:PerThreadSAXParserProvider.PerThreadSAXParserCache
97 PerThreadSAXParserCache(int maxSize, boolean validating, SAXParserProvider delegate) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/dpro/session/
H A DDynamicSessionIDExtensions.java35 private final SessionIDExtensions delegate; field in class:DynamicSessionIDExtensions
41 * @param delegate Non null, required for delegation of actual operation.
44 DynamicSessionIDExtensions(WebtopNamingQuery query, SessionIDExtensions delegate) { argument
46 this.delegate = delegate;
52 * @param delegate The delegate to defer.
54 public DynamicSessionIDExtensions(SessionIDExtensions delegate) { argument
55 this(new WebtopNamingQuery(), delegate);
65 return delegate
[all...]
/forgerock/openam/openam-core/src/main/java/com/iplanet/dpro/session/
H A DDynamicSessionIDExtensions.java35 private final SessionIDExtensions delegate; field in class:DynamicSessionIDExtensions
41 * @param delegate Non null, required for delegation of actual operation.
44 DynamicSessionIDExtensions(WebtopNamingQuery query, SessionIDExtensions delegate) { argument
46 this.delegate = delegate;
52 * @param delegate The delegate to defer.
54 public DynamicSessionIDExtensions(SessionIDExtensions delegate) { argument
55 this(new WebtopNamingQuery(), delegate);
65 return delegate
[all...]
/forgerock/openam-v13/openam-rest/src/main/java/org/forgerock/openam/rest/query/
H A DQueryResponseHandler.java30 private final QueryResourceHandler delegate; field in class:QueryResponseHandler
32 QueryResponseHandler(QueryResourceHandler delegate) { argument
33 this.delegate = delegate;
38 return delegate.handleResource(resource);
/forgerock/openam/openam-rest/src/main/java/org/forgerock/openam/rest/query/
H A DQueryResponseHandler.java30 private final QueryResourceHandler delegate; field in class:QueryResponseHandler
32 QueryResponseHandler(QueryResourceHandler delegate) { argument
33 this.delegate = delegate;
38 return delegate.handleResource(resource);
/forgerock/openidm-v4/openidm-smartevent/src/main/java/org/forgerock/openidm/smartevent/core/
H A DDisruptorReferringEventEntry.java34 EventEntryImpl delegate; field in class:DisruptorReferringEventEntry
86 if (delegate != null && delegate.eventName != null) {
88 + delegate.eventName.asString()
92 + delegate.payload
94 + delegate.context
96 + delegate.publisherResultSet
97 + (delegate.eventName.getResultHistoryEnabled() ? " result: "
98 + delegate.publisherResult : " result history is disabled.");
/forgerock/openidm-v4/openidm-system/src/main/java/org/forgerock/openidm/core/
H A DSystemPropertyAccessor.java33 private final PropertyAccessor delegate; field in class:SystemPropertyAccessor
35 public SystemPropertyAccessor(final PropertyAccessor delegate) { argument
36 this.delegate = delegate;
41 * found in the System properties, the {@code delegate} is then requested.
62 return null != value ? value : (null != delegate) ? delegate.getProperty(key, defaultValue,
H A DFrameworkPropertyAccessor.java36 private final PropertyAccessor delegate; field in class:FrameworkPropertyAccessor
39 public FrameworkPropertyAccessor(BundleContext context, PropertyAccessor delegate) { argument
41 this.delegate = delegate;
48 * {@code delegate} is then requested. The method returns {@code null} if
76 return null != value ? value : (null != delegate) ? delegate.getProperty(key, defaultValue,
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/cts/monitoring/impl/persistence/
H A DCtsPersistenceOperationsMonitor.java31 private final CtsPersistenceOperationsDelegate delegate; field in class:CtsPersistenceOperationsMonitor
39 public CtsPersistenceOperationsMonitor(CtsPersistenceOperationsDelegate delegate) { argument
40 this.delegate = delegate;
50 return (long) delegate.countAllTokens();
66 return (long) delegate.countTokenEntries(tokenType);
83 final Collection<Long> queryResults = delegate.listDurationOfTokens(tokenType);
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/cts/monitoring/impl/persistence/
H A DCtsPersistenceOperationsMonitor.java31 private final CtsPersistenceOperationsDelegate delegate; field in class:CtsPersistenceOperationsMonitor
39 public CtsPersistenceOperationsMonitor(CtsPersistenceOperationsDelegate delegate) { argument
40 this.delegate = delegate;
50 return (long) delegate.countAllTokens();
66 return (long) delegate.countTokenEntries(tokenType);
83 final Collection<Long> queryResults = delegate.listDurationOfTokens(tokenType);
/forgerock/authenticator-ios-v2/ForgeRock-Authenticator/
H A DFRABlockAlertView.m32 - (instancetype)initWithTitle:(NSString *)title message:(NSString *)message delegate:(id)delegate cancelButtonTitle:(NSString *)cancelButtonTitle otherButtonTitle:(NSString *)otherButtonTitle handler:(void (^)(NSInteger))handler {
33 self = [super initWithTitle:title message:message delegate:(delegate ? delegate : self) cancelButtonTitle:cancelButtonTitle otherButtonTitles:otherButtonTitle, nil];
/forgerock/openam-v13/openam-tools/openam-license-core/src/main/java/org/forgerock/openam/license/
H A DPersistentLicenseLocator.java29 private final LicenseLocator delegate; field in class:PersistentLicenseLocator
34 * Constructs the license locator with the given delegate locator, using the given log for recording license
37 * @param delegate the underlying locator to use to find licenses.
41 public PersistentLicenseLocator(LicenseLocator delegate, LicenseLog log, String username) { argument
42 if (delegate == null) {
43 throw new NullPointerException("delegate license locator is null");
54 this.delegate = delegate;
67 for (License license : delegate.getRequiredLicenses()) {

Completed in 51 milliseconds

123456789