Package $

Source Code of $.CoreModule

#set( $symbol_pound = '#' )
#set( $symbol_dollar = '$' )
#set( $symbol_escape = '\' )
package ${package}.di;

import org.codehaus.jackson.map.ObjectMapper;

import br.com.ingenieux.cloudy.awseb.di.BaseAWSModule;

import com.google.inject.AbstractModule;
import com.google.inject.Provides;

public class CoreModule extends AbstractModule {
  @Provides
  public ObjectMapper getObjectMapper() {
    return new ObjectMapper();
  }
 
    @Override
    protected void configure() {
      install(new BaseAWSModule().withDynamicRegion());
        // Uncomment to create beanstalk awareness
        // install(new EC2Module());
        // install(new BeanstalkEnvironmentModule());
    }
}
TOP

Related Classes of $.CoreModule

TOP
Copyright © 2018 www.massapi.com. 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.