Searched defs:delegate (Results 1 - 25 of 153) sorted by relevance

1234567

/forgerock/authenticator-ios-v2/ForgeRock-Authenticator/
H A DFRAPushMechanismTableViewCell.h29 * The delegate that acts as controller for this cell's UI elements.
31 @property (strong, nonatomic) FRAPushMechanismTableViewCellController *delegate; variable
H A DFRAOathMechanismTableViewCell.h26 * The delegate that acts as controller for this cell's UI elements relating to the OATH code value.
28 @property (strong, nonatomic) FRAOathMechanismTableViewCellController *delegate; variable
/forgerock/openam-v13/openam-shared/src/main/java/org/forgerock/openam/utils/
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 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 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-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 DAuditRequestContextPropagatingScheduledExecutorService.java37 * @param delegate The task running thread.
39 public AuditRequestContextPropagatingScheduledExecutorService(ScheduledExecutorService delegate) { argument
40 super(delegate);
48 return ((ScheduledExecutorService) delegate).schedule(wrap(command), delay, unit);
56 return ((ScheduledExecutorService) delegate).schedule(wrap(callable), delay, unit);
64 return ((ScheduledExecutorService) delegate).scheduleAtFixedRate(wrap(command), initialDelay, period, unit);
72 return ((ScheduledExecutorService) delegate).scheduleWithFixedDelay(wrap(command), initialDelay, delay, unit);
/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()) {
/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,
/forgerock/openam/openam-shared/src/main/java/org/forgerock/openam/utils/
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...]
/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();
/forgerock/openam/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()) {
/forgerock/openam-v13/openam-rest/src/main/java/org/forgerock/openam/rest/query/
H A DPagingQueryResponseHandler.java35 private final QueryResourceHandler delegate; field in class:PagingQueryResponseHandler
40 PagingQueryResponseHandler(final QueryResponseHandler delegate, final int pageSize, argument
42 super(delegate);
43 Reject.ifNull(delegate);
47 this.delegate = delegate;
58 needMore = delegate.handleResource(resource) && needMore;
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-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-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-v13/openam-core/src/main/java/org/forgerock/openam/idm/
H A DIdCachedServicesDecorator.java31 * Constructs the decorator using the given delegate implementation.
33 * @param delegate a non-null IdServices implementation to delegate calls to.
34 * @throws NullPointerException if the delegate is null.
36 protected IdCachedServicesDecorator(IdCachedServices delegate) { argument
37 super(delegate);
H A DLowerCaseIdCachedServicesDecorator.java38 * Constructs the decorator using the given delegate implementation.
40 * @param delegate a non-null IdServices implementation to delegate calls to.
41 * @throws NullPointerException if the delegate is null.
43 public LowerCaseIdCachedServicesDecorator(IdCachedServices delegate) { argument
44 super(delegate);
H A DLowerCaseIdServicesDecorator.java39 * Constructs the lower-case decorator using the given delegate IdServices implementation for actual work.
41 * @param delegate the delegate service instance to use. Cannot be null.
42 * @throws NullPointerException if the delegate is null.
44 public LowerCaseIdServicesDecorator(IdServices delegate) { argument
45 super(delegate);
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/session/blacklist/
H A DCachingSessionBlacklist.java34 private final SessionBlacklist delegate; field in class:CachingSessionBlacklist
39 CachingSessionBlacklist(final SessionBlacklist delegate, final int maxSize, final long purgeDelayMs, argument
41 Reject.ifNull(delegate);
43 this.delegate = delegate;
54 * Constructs the caching session blacklist with the given delegate blacklist and maximum cache size.
56 * @param delegate the delegate to defer cache misses to.
60 public CachingSessionBlacklist(final SessionBlacklist delegate, final int maxSize, final long purgeDelayMs) { argument
61 this(delegate, maxSiz
[all...]
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/sso/providers/stateless/
H A DStatelessAdminRestriction.java35 private final SuperUserDelegate delegate; field in class:StatelessAdminRestriction
39 public StatelessAdminRestriction(SuperUserDelegate delegate, StatelessSessionFactory factory) { argument
40 this.delegate = delegate;
82 return delegate.isSuperUser(userDN) || delegate.isSpecialUser(userDN);
/forgerock/openam-v13/openam-audit/openam-audit-core/src/main/java/org/forgerock/openam/audit/
H A DAMAuditService.java32 * Set the new delegate to set on the {@link org.forgerock.audit.AuditServiceProxy} and the configuration for the
35 * @param delegate The audit service delegate.
37 * @throws ServiceUnavailableException If the delegate is unavailable.
40 void setDelegate(AuditService delegate, AMAuditServiceConfiguration configuration) argument
H A DRealmAuditServiceProxy.java39 * Create a new instance of the {@code AMAuditServiceProxy}. Note that the given delegate should be started
42 * @param delegate The audit service delegate.
43 * @param defaultDelegate The default audit service delegate.
47 public RealmAuditServiceProxy(AuditService delegate, AMAuditService defaultDelegate, argument
50 super(delegate);
58 public void setDelegate(AuditService delegate, AMAuditServiceConfiguration configuration) throws argument
64 setDelegate(delegate);

Completed in 130 milliseconds

1234567