Skip to content

Commit

Permalink
LPS-124751 Makes more sense like this
Browse files Browse the repository at this point in the history
  • Loading branch information
brianchandotcom committed Dec 16, 2020
1 parent fa3dd5c commit 012adf4
Showing 1 changed file with 20 additions and 20 deletions.
Expand Up @@ -29,6 +29,26 @@
)
public interface FreeMarkerEngineConfiguration {

@Meta.AD(deflt = "0", name = "async-render-timeout", required = false)
public long asyncRenderTimeout();

@Meta.AD(
deflt = "10", name = "async-render-timeout-threshold", required = false
)
public int asyncRenderTimeoutThreshold();

@Meta.AD(
deflt = "2147483647", name = "async-render-thread-pool-max-size",
required = false
)
public int asyncRenderThreadPoolMaxSize();

@Meta.AD(
deflt = "2147483647", name = "async-render-thread-pool-max-queue-size",
required = false
)
public int asyncRenderThreadPoolMaxQueueSize();

@Meta.AD(deflt = "false", name = "localized-lookup", required = false)
public boolean localizedLookup();

Expand All @@ -52,26 +72,6 @@ public interface FreeMarkerEngineConfiguration {
)
public String[] restrictedMethods();

@Meta.AD(deflt = "0", name = "async-render-timeout", required = false)
public long asyncRenderTimeout();

@Meta.AD(
deflt = "10", name = "async-render-timeout-threshold", required = false
)
public int asyncRenderTimeoutThreshold();

@Meta.AD(
deflt = "2147483647", name = "async-render-thread-pool-max-size",
required = false
)
public int asyncRenderThreadPoolMaxSize();

@Meta.AD(
deflt = "2147483647", name = "async-render-thread-pool-max-queue-size",
required = false
)
public int asyncRenderThreadPoolMaxQueueSize();

@Meta.AD(
deflt = "httpUtilUnsafe|objectUtil|serviceLocator|staticFieldGetter|staticUtil|utilLocator",
name = "restricted-variables", required = false
Expand Down

0 comments on commit 012adf4

Please sign in to comment.