Package org.openehealth.ipf.boot.fhir
Class IpfFhirConfigurationProperties.Servlet
java.lang.Object
org.openehealth.ipf.boot.fhir.IpfFhirConfigurationProperties.Servlet
- Enclosing class:
- IpfFhirConfigurationProperties
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionint
Default number of result entries to be returned if no _count parameter is specified in a searchgetInit()
Servlet init parameters to pass to the FHIR Servlet.int
Load on startup priority of the FHIR servlet.int
Maximum number of result entries to be returned even if the _count parameter of a search demands for moregetName()
Name of the servletint
Number of concurrent paging requests that can be handledboolean
Whether the Paging Provider cache is expected to be distributed, so that serialization of result bundles is necessary.boolean
Enable server-side request loggingboolean
Enable pretty-printing responsesboolean
Enable color-coding responses queried from a Web Browserboolean
isStrict()
Enable strict resource parsingvoid
setDefaultPageSize
(int defaultPageSize) Default number of result entries to be returned if no _count parameter is specified in a searchvoid
setDistributedPagingProvider
(boolean distributedPagingProvider) Whether the Paging Provider cache is expected to be distributed, so that serialization of result bundles is necessary.void
Servlet init parameters to pass to the FHIR Servlet.void
setLoadOnStartup
(int loadOnStartup) Load on startup priority of the FHIR servlet.void
setLogging
(boolean logging) Enable server-side request loggingvoid
setMaxPageSize
(int maxPageSize) Maximum number of result entries to be returned even if the _count parameter of a search demands for morevoid
Name of the servletvoid
setPagingRequests
(int pagingRequests) Number of concurrent paging requests that can be handledvoid
setPrettyPrint
(boolean prettyPrint) Enable pretty-printing responsesvoid
setResponseHighlighting
(boolean responseHighlighting) Enable color-coding responses queried from a Web Browservoid
setStrict
(boolean strict) Enable strict resource parsing
-
Constructor Details
-
Servlet
public Servlet()
-
-
Method Details
-
getInit
Servlet init parameters to pass to the FHIR Servlet. -
setInit
Servlet init parameters to pass to the FHIR Servlet. -
getLoadOnStartup
public int getLoadOnStartup()Load on startup priority of the FHIR servlet. -
setLoadOnStartup
public void setLoadOnStartup(int loadOnStartup) Load on startup priority of the FHIR servlet. -
getName
Name of the servlet -
setName
Name of the servlet -
getPagingRequests
public int getPagingRequests()Number of concurrent paging requests that can be handled -
setPagingRequests
public void setPagingRequests(int pagingRequests) Number of concurrent paging requests that can be handled -
getDefaultPageSize
public int getDefaultPageSize()Default number of result entries to be returned if no _count parameter is specified in a search -
setDefaultPageSize
public void setDefaultPageSize(int defaultPageSize) Default number of result entries to be returned if no _count parameter is specified in a search -
getMaxPageSize
public int getMaxPageSize()Maximum number of result entries to be returned even if the _count parameter of a search demands for more -
setMaxPageSize
public void setMaxPageSize(int maxPageSize) Maximum number of result entries to be returned even if the _count parameter of a search demands for more -
isDistributedPagingProvider
public boolean isDistributedPagingProvider()Whether the Paging Provider cache is expected to be distributed, so that serialization of result bundles is necessary. In this case, FHIR endpoints must not use lazy-loading of results. -
setDistributedPagingProvider
public void setDistributedPagingProvider(boolean distributedPagingProvider) Whether the Paging Provider cache is expected to be distributed, so that serialization of result bundles is necessary. In this case, FHIR endpoints must not use lazy-loading of results. -
isLogging
public boolean isLogging()Enable server-side request logging -
setLogging
public void setLogging(boolean logging) Enable server-side request logging -
isPrettyPrint
public boolean isPrettyPrint()Enable pretty-printing responses -
setPrettyPrint
public void setPrettyPrint(boolean prettyPrint) Enable pretty-printing responses -
isResponseHighlighting
public boolean isResponseHighlighting()Enable color-coding responses queried from a Web Browser -
setResponseHighlighting
public void setResponseHighlighting(boolean responseHighlighting) Enable color-coding responses queried from a Web Browser -
isStrict
public boolean isStrict()Enable strict resource parsing -
setStrict
public void setStrict(boolean strict) Enable strict resource parsing
-