Package com.groupon.odo

Examples of com.groupon.odo.Proxy


class GenericProxyContainer {
    private static final Logger logger = LoggerFactory.getLogger(GenericProxyContainer.class);

    @Bean
    public ServletRegistrationBean dispatcherRegistration() {
        ServletRegistrationBean registration = new ServletRegistrationBean(new Proxy());
        registration.addUrlMappings("/*");

        return registration;
    }
View Full Code Here

TOP

Related Classes of com.groupon.odo.Proxy

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.