com.rollbar.notifier.config.Config Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rollbar-java Show documentation
Show all versions of rollbar-java Show documentation
For connecting your applications built on the JVM to Rollbar for Error Reporting
package com.rollbar.notifier.config;
import com.rollbar.notifier.Rollbar;
import com.rollbar.notifier.sender.Sender;
import com.rollbar.notifier.sender.json.JsonSerializer;
import java.net.Proxy;
/**
* The configuration for the {@link Rollbar notifier}.
*/
public interface Config extends CommonConfig {
/**
* Get the {@link Sender sender}.
*
* @return the sender.
*/
Sender sender();
/**
* Get the {@link Proxy proxy}.
*
* @return the proxy.
*/
Proxy proxy();
}