Package com.proofpoint.reporting

Examples of com.proofpoint.reporting.ReportingModule


                            new MBeanModule(),
                            new JmxModule(),
                            new JmxHttpModule(),
                            new LogJmxModule(),
                            new HttpEventModule(),
                            new ReportingModule(),
                            new ReportingClientModule(),
                            new TraceTokenModule(),
                            new MainModule()
                    );
View Full Code Here


                new ApplicationNameModule("test-application"),
                new ConfigurationModule(new ConfigurationFactory(ImmutableMap.of("testing.discovery.uri", "fake://server"))),
                new JsonModule(),
                new TestingNodeModule(),
                new TestingMBeanModule(),
                new ReportingModule(),
                new DiscoveryModule()
        );

        // should produce a discovery announcement client and a lookup client
        Assert.assertNotNull(injector.getInstance(DiscoveryAnnouncementClient.class));
View Full Code Here

                .doNotInitializeLogging()
                .withModules(
                        new JsonModule(),
                        new TestingNodeModule(),
                        new DiscoveryModule(),
                        new ReportingModule(),
                        new TestingMBeanModule()
                );

        Injector injector = app.initialize();
View Full Code Here

                            new MBeanModule(),
                            new JmxModule(),
                            new JmxHttpModule(),
                            new LogJmxModule(),
                            new HttpEventModule(),
                            new ReportingModule(),
                            new ReportingClientModule(),
                            new TraceTokenModule(),
                            new MainModule()
                    );
View Full Code Here

                new ApplicationNameModule("test-application"),
                new ConfigurationModule(new ConfigurationFactory(ImmutableMap.<String, String>of())),
                new TestingNodeModule(),
                new TestingDiscoveryModule(),
                new TestingMBeanModule(),
                new ReportingModule(),
                new Module()
                {
                    @Override
                    public void configure(Binder binder)
                    {
View Full Code Here

                new ApplicationNameModule("test-application"),
                new ConfigurationModule(new ConfigurationFactory(ImmutableMap.<String, String>of())),
                new TestingNodeModule(),
                new TestingDiscoveryModule(),
                new TestingMBeanModule(),
                new ReportingModule(),
                new Module()
                {
                    @Override
                    public void configure(Binder binder)
                    {
View Full Code Here

        Injector injector = Guice.createInjector(
                new ApplicationNameModule("test-application"),
                new TestingDiscoveryModule(),
                new TestingMBeanModule(),
                new ReportingModule(),
                new Module()
                {
                    @Override
                    public void configure(Binder binder)
                    {
View Full Code Here

    {
        return Guice.createInjector(
                new ApplicationNameModule("test-application"),
                new TestingDiscoveryModule(),
                new TestingMBeanModule(),
                new ReportingModule(),
                new Module()
                {
                    @Override
                    public void configure(Binder binder)
                    {
View Full Code Here

        return Guice.createInjector(
                new ApplicationNameModule("test-application"),
                new TestingNodeModule(),
                explicitJaxrsModule(),
                new JsonModule(),
                new ReportingModule(),
                new Module()
                {
                    @Override
                    public void configure(Binder binder)
                    {
View Full Code Here

                .doNotInitializeLogging()
                .withModules(
                        new TestingNodeModule(),
                        new TestingDiscoveryModule(),
                        new TestingMBeanModule(),
                        new ReportingModule(),
                        module
                )
                .quiet()
                .setRequiredConfigurationProperties(configurationProperties)
                .initialize();
View Full Code Here

TOP

Related Classes of com.proofpoint.reporting.ReportingModule

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.