Uses of Interface
org.faceless.publisher.type.EgressFilter
Packages that use EgressFilter
Package
Description
Provides the main classes for BFO Publisher
Contains utility classes and interfaces which are used across BFO Publisher
-
Uses of EgressFilter in org.faceless.publisher
Methods in org.faceless.publisher that return EgressFilterModifier and TypeMethodDescriptionDocument.getEgressFilter()
Return the EgressFilter for this Document.Report.getEgressFilter()
Return the egress filter set byReport.setEgressFilter(org.faceless.publisher.type.EgressFilter)
ReportFactory.getEgressFilter()
Return theEgressFilter
, as set byReportFactory.setEgressFilter(org.faceless.publisher.type.EgressFilter)
Methods in org.faceless.publisher with parameters of type EgressFilterModifier and TypeMethodDescriptionvoid
Report.setEgressFilter
(EgressFilter filter) Set the EgressFilter to use for resources loaded by this Document.void
ReportFactory.setEgressFilter
(EgressFilter filter) Set theEgressFilter
which is used to initialise the same value on anyReport
objects created by this factory. -
Uses of EgressFilter in org.faceless.publisher.type
Fields in org.faceless.publisher.type declared as EgressFilterModifier and TypeFieldDescriptionstatic final EgressFilter
EgressFilter.DEFAULT
An EgressFilter equivalent toEgressFilter.parse("trustworthy or from-file or not file or from-api")
that has the following restrictions: special URLs such as those with the schemesabout:
ordata:
can always be accessed URLs specified programatically (by way of an API call) can always be accessedfile
andjar
URLs can only ever be accessed fromfile
andjar
URLs otherwise all access is allowedMethods in org.faceless.publisher.type that return EgressFilterModifier and TypeMethodDescriptionstatic EgressFilter
EgressFilter.and
(EgressFilter... filters) Return an EgressFilter built from a sequence of other EgressFilters.static EgressFilter
EgressFilter.not
(EgressFilter a) Return an EgressFilter which "inverts" the supplied filter.static EgressFilter
EgressFilter.or
(EgressFilter... filters) Return an EgressFilter built from a sequence of other EgressFilters.static EgressFilter
Parse an expression string describing an EgressFilter.static EgressFilter
EgressFilter.then
(EgressFilter a, EgressFilter b) Return an EgressFilter which implements the "then" logical operation.Methods in org.faceless.publisher.type with parameters of type EgressFilterModifier and TypeMethodDescriptionstatic EgressFilter
EgressFilter.and
(EgressFilter... filters) Return an EgressFilter built from a sequence of other EgressFilters.static EgressFilter
EgressFilter.not
(EgressFilter a) Return an EgressFilter which "inverts" the supplied filter.static EgressFilter
EgressFilter.or
(EgressFilter... filters) Return an EgressFilter built from a sequence of other EgressFilters.static EgressFilter
EgressFilter.then
(EgressFilter a, EgressFilter b) Return an EgressFilter which implements the "then" logical operation.