congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
RestletCloudConfig.setReverseProxyEnabled
Code IndexAdd Tabnine to your IDE (free)

How to use
setReverseProxyEnabled
method
in
org.restlet.ext.platform.internal.RestletCloudConfig

Best Java code snippets using org.restlet.ext.platform.internal.RestletCloudConfig.setReverseProxyEnabled (Showing top 4 results out of 315)

origin: org.restlet.jee/org.restlet.ext.platform

@Override
public Filter createInboundFilter(Context context) {
  RestletCloudConfig restletCloudConfig = new RestletCloudConfig();
  restletCloudConfig.setAgentCellId(agentCellId);
  restletCloudConfig.setAgentCellVersion(agentCellVersion);
  restletCloudConfig.setAgentServiceUrl(agentServiceUrl);
  restletCloudConfig.setAgentLogin(agentLogin);
  restletCloudConfig.setAgentPassword(agentPassword);
  restletCloudConfig.setReverseProxyEnabled(reverseProxyEnabled);
  restletCloudConfig.setReverseProxyTargetUrl(reverseProxyTargetUrl);
  restletCloudConfig.setAgentAnalyticsBufferSize(agentAnalyticsBufferSize);
  restletCloudConfig.setAgentAnalyticsPostPeriodInSecond(agentAnalyticsPostPeriodInSecond);
  restletCloudFilter = new RestletCloudFilter(context, restletCloudConfig,
      agentEnabled, firewallEnabled, firewallRules);
  if (agentEnabled && agentRefreshPeriodInSecond > 0) {
    TimerTask task = new AgentConfigurationTimerTask(restletCloudFilter);
    agentRefreshTimer = new Timer(true);
    long agentRefreshPeriodInMs = TimeUnit.SECONDS.toMillis(agentRefreshPeriodInSecond);
    agentRefreshTimer.scheduleAtFixedRate(task, agentRefreshPeriodInMs,
        agentRefreshPeriodInMs);
    LOGGER.info("Setting agent refresh timer every "
        + TimeUnit.SECONDS.toMinutes(agentRefreshPeriodInSecond)
        + " minutes");
  }
  return restletCloudFilter;
}
origin: org.restlet.jse/org.restlet.ext.platform

@Override
public Filter createInboundFilter(Context context) {
  RestletCloudConfig restletCloudConfig = new RestletCloudConfig();
  restletCloudConfig.setAgentCellId(agentCellId);
  restletCloudConfig.setAgentCellVersion(agentCellVersion);
  restletCloudConfig.setAgentServiceUrl(agentServiceUrl);
  restletCloudConfig.setAgentLogin(agentLogin);
  restletCloudConfig.setAgentPassword(agentPassword);
  restletCloudConfig.setReverseProxyEnabled(reverseProxyEnabled);
  restletCloudConfig.setReverseProxyTargetUrl(reverseProxyTargetUrl);
  restletCloudConfig.setAgentAnalyticsBufferSize(agentAnalyticsBufferSize);
  restletCloudConfig.setAgentAnalyticsPostPeriodInSecond(agentAnalyticsPostPeriodInSecond);
  restletCloudFilter = new RestletCloudFilter(context, restletCloudConfig,
      agentEnabled, firewallEnabled, firewallRules);
  if (agentEnabled && agentRefreshPeriodInSecond > 0) {
    TimerTask task = new AgentConfigurationTimerTask(restletCloudFilter);
    agentRefreshTimer = new Timer(true);
    long agentRefreshPeriodInMs = TimeUnit.SECONDS.toMillis(agentRefreshPeriodInSecond);
    agentRefreshTimer.scheduleAtFixedRate(task, agentRefreshPeriodInMs,
        agentRefreshPeriodInMs);
    LOGGER.info("Setting agent refresh timer every "
        + TimeUnit.SECONDS.toMinutes(agentRefreshPeriodInSecond)
        + " minutes");
  }
  return restletCloudFilter;
}
origin: org.restlet.osgi/org.restlet.ext.platform

@Override
public Filter createInboundFilter(Context context) {
  RestletCloudConfig restletCloudConfig = new RestletCloudConfig();
  restletCloudConfig.setAgentCellId(agentCellId);
  restletCloudConfig.setAgentCellVersion(agentCellVersion);
  restletCloudConfig.setAgentServiceUrl(agentServiceUrl);
  restletCloudConfig.setAgentLogin(agentLogin);
  restletCloudConfig.setAgentPassword(agentPassword);
  restletCloudConfig.setReverseProxyEnabled(reverseProxyEnabled);
  restletCloudConfig.setReverseProxyTargetUrl(reverseProxyTargetUrl);
  restletCloudConfig.setAgentAnalyticsBufferSize(agentAnalyticsBufferSize);
  restletCloudConfig.setAgentAnalyticsPostPeriodInSecond(agentAnalyticsPostPeriodInSecond);
  restletCloudFilter = new RestletCloudFilter(context, restletCloudConfig,
      agentEnabled, firewallEnabled, firewallRules);
  if (agentEnabled && agentRefreshPeriodInSecond > 0) {
    TimerTask task = new AgentConfigurationTimerTask(restletCloudFilter);
    agentRefreshTimer = new Timer(true);
    long agentRefreshPeriodInMs = TimeUnit.SECONDS.toMillis(agentRefreshPeriodInSecond);
    agentRefreshTimer.scheduleAtFixedRate(task, agentRefreshPeriodInMs,
        agentRefreshPeriodInMs);
    LOGGER.info("Setting agent refresh timer every "
        + TimeUnit.SECONDS.toMinutes(agentRefreshPeriodInSecond)
        + " minutes");
  }
  return restletCloudFilter;
}
origin: org.restlet.gae/org.restlet.ext.platform

@Override
public Filter createInboundFilter(Context context) {
  RestletCloudConfig restletCloudConfig = new RestletCloudConfig();
  restletCloudConfig.setAgentCellId(agentCellId);
  restletCloudConfig.setAgentCellVersion(agentCellVersion);
  restletCloudConfig.setAgentServiceUrl(agentServiceUrl);
  restletCloudConfig.setAgentLogin(agentLogin);
  restletCloudConfig.setAgentPassword(agentPassword);
  restletCloudConfig.setReverseProxyEnabled(reverseProxyEnabled);
  restletCloudConfig.setReverseProxyTargetUrl(reverseProxyTargetUrl);
  restletCloudConfig.setAgentAnalyticsBufferSize(agentAnalyticsBufferSize);
  restletCloudConfig.setAgentAnalyticsPostPeriodInSecond(agentAnalyticsPostPeriodInSecond);
  restletCloudFilter = new RestletCloudFilter(context, restletCloudConfig,
      agentEnabled, firewallEnabled, firewallRules);
  if (agentEnabled && agentRefreshPeriodInSecond > 0) {
    TimerTask task = new AgentConfigurationTimerTask(restletCloudFilter);
    agentRefreshTimer = new Timer(true);
    long agentRefreshPeriodInMs = TimeUnit.SECONDS.toMillis(agentRefreshPeriodInSecond);
    agentRefreshTimer.scheduleAtFixedRate(task, agentRefreshPeriodInMs,
        agentRefreshPeriodInMs);
    LOGGER.info("Setting agent refresh timer every "
        + TimeUnit.SECONDS.toMinutes(agentRefreshPeriodInSecond)
        + " minutes");
  }
  return restletCloudFilter;
}
org.restlet.ext.platform.internalRestletCloudConfigsetReverseProxyEnabled

Popular methods of RestletCloudConfig

  • <init>
  • getAgentAnalyticsBufferSize
  • getAgentAnalyticsPostPeriodInSecond
  • getAgentCellId
  • getAgentCellVersion
  • getAgentLogin
  • getAgentPassword
  • getAgentServiceUrl
  • getReverseProxyTargetUrl
  • isReverseProxyEnabled
  • setAgentAnalyticsBufferSize
  • setAgentAnalyticsPostPeriodInSecond
  • setAgentAnalyticsBufferSize,
  • setAgentAnalyticsPostPeriodInSecond,
  • setAgentCellId,
  • setAgentCellVersion,
  • setAgentLogin,
  • setAgentPassword,
  • setAgentServiceUrl,
  • setReverseProxyTargetUrl

Popular in Java

  • Creating JSON documents from java classes using gson
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • scheduleAtFixedRate (ScheduledExecutorService)
  • SocketTimeoutException (java.net)
    This exception is thrown when a timeout expired on a socket read or accept operation.
  • Permission (java.security)
    Legacy security code; do not use.
  • SQLException (java.sql)
    An exception that indicates a failed JDBC operation. It provides the following information about pro
  • Time (java.sql)
    Java representation of an SQL TIME value. Provides utilities to format and parse the time's represen
  • List (java.util)
    An ordered collection (also known as a sequence). The user of this interface has precise control ove
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches
  • Best IntelliJ plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now