Example usage for org.springframework.context ApplicationEventPublisherAware interface-usage

List of usage examples for org.springframework.context ApplicationEventPublisherAware interface-usage

Introduction

In this page you can find the example usage for org.springframework.context ApplicationEventPublisherAware interface-usage.

Usage

From source file de.acosix.alfresco.mtsupport.repo.sync.TenantAwareChainingUserRegistrySynchronizer.java

/**
 * This class completely re-implements the user and groups synchronization logic provided by {@link ChainingUserRegistrySynchronizer} and
 * enhances it to support multi-tenancy use cases. The default component in out-of-the-box Alfresco is impossible to customise or in any way
 * adapt to handling multi-tenancy, as it is a single monolithic mess.
 *
 * All operations defined by the interfaces {@link UserRegistrySynchronizer}, {@link ChainingUserRegistrySynchronizerStatus} and

From source file com.vmware.appfactory.common.base.AbstractController.java

/**
 * All controllers inherit from this in order to gain some basic functionality.
 * The BaseController provides global data to a common model, including the
 * current user, the page name (functional area of the application), etc.
 */
public abstract class AbstractController implements ApplicationEventPublisherAware {

From source file com.wavemaker.studio.StudioService.java

/**
 * Main Studio service interface. This service will manage the other studio services, their inclusion into the
 * HTTPSession, the current project, etc.
 * 
 * @author Matt Small
 */

From source file com.yqboots.security.core.UserManagerImpl.java

/**
 * User manager implementation.
 *
 * @author Eric H B Zhan
 * @since 1.1.0
 */

From source file de.juwimm.cms.beans.foreign.security.ConQuestDaoAuthenticationProvider.java

/**
 *
 * @author Ray Krueger
 * @version $Id$
 */
public class ConQuestDaoAuthenticationProvider implements AuthenticationProvider, ApplicationEventPublisherAware,

From source file ome.io.nio.PixelsService.java

/**
 * @author <br>
 *         Chris Allan&nbsp;&nbsp;&nbsp;&nbsp; <a
 *         href="mailto:callan@blackcat.ca">callan@blackcat.ca</a>
 * @version 3.0 <small> (<b>Internal version:</b> $Revision$ $Date$) </small>
 * @since OMERO-Beta1.0

From source file ome.services.fulltext.BridgeHelper.java

/**
 * Base class for building custom {@link FieldBridge} implementations.
 * 
 * To force handling of null values, the
 * {@link #add(Document, String, String, Store, org.apache.lucene.document.Field.Index, Float)}
 * methods throw {@link NullValueException} which can convert itself to a

From source file ome.services.sessions.stats.LongCounter.java

/**
 * Counter object which increments an internal long by some integer value,
 * and according to some strategy publishes an {@link InternalMessage} subclass.
 * 
 * @author Josh Moore, josh at glencoesoftware.com
 * @since Beta4

From source file org.acegisecurity.intercept.AbstractSecurityInterceptor.java

/**
 * Abstract class that implements security interception for secure objects.
 * <p>
 * The <code>AbstractSecurityInterceptor</code> will ensure the proper startup
 * configuration of the security interceptor. It will also implement the proper
 * handling of secure object invocations, being:

From source file org.acegisecurity.providers.jaas.JaasAuthenticationProvider.java

/**
 * An {@link AuthenticationProvider} implementation that retrieves user details from a JAAS login configuration.
 *
 * <p>This <code>AuthenticationProvider</code> is capable of validating {@link
 * org.acegisecurity.providers.UsernamePasswordAuthenticationToken} requests contain the correct username and
 * password.</p>