Package net.frenopatico.citadels.controller.interceptors

Examples of net.frenopatico.citadels.controller.interceptors.TransactionalInterceptor


    @Override
    protected void configure() {
        bind( IPlayersService.class ).to( PlayersServiceImpl.class ).in( ServletScopes.SESSION );

        bindInterceptor( Matchers.any(), Matchers.annotatedWith( Transactional.class ), new TransactionalInterceptor() );

        log.info( String.format( "%s initialized", ServicesModule.class.getSimpleName() ) );
    }
View Full Code Here

TOP

Related Classes of net.frenopatico.citadels.controller.interceptors.TransactionalInterceptor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.