For a list of all members of this type, see IInterpreterFilter Members.
Type | Description |
---|---|
BaseInterpreterFilter | This is a pass-through filter; both the PreFilter and PostFilter methods have the default implementation that returns a boolean false. This is a utility class to make it easier to implement only one of the filter methods (either the PreFilter or the PostFilter) without implementing the other (which by default will be a pass through). |
ExpressionEngineFilter | This filter will load up the environment data for the expression engine and run the expression engine. It will figure out the right subportal to use for this request. The actual implementation of the expression engine filter is in the portaluiinfrastructure layer (i.e., class portaluiinfrastructure.condition.interpreterfilter.ExpressionEngineFilter). This class is created to avoid mixing of dependency between uiinfrastructure and portaluiinfrastructure layers. The Expression Engine component is part of portaluiinfrastructure layer, while interpreter filter is part of uiinfrastructure layer. Hence, static initializer is used in this class to init the actual implementation that calls and runs the expression engine. |
GatewayFilter | A filter to handle gateway request. |
HealthFilter | A filter to handle ping requests. Clients can call this URL to find out if the Portal thinks it is healthy. |
HttpCompressionFilter | |
RequestDataFilter | A filter to init and clean-up temporary data in the activity space and cache. Currently, we don't do any init, only clean up, so only the PostFilter method is implemented here. Note that this filter should listed after the RequestQueueFilter in the InterpreterFilters.xml (since the clean up must be done while the session is still locked). |
RequestLockFilter | A filter to perform a lock on the session. The lock will be released in the PostFilter method. |
RequestQueueFilter | A filter to check if there are too many requests queued up on this session already. If it is, the PreFilter method will thrown an InterpreterException with message: The server is busy processing your previous request. Otherwise, the PreFilter method will put this request into the request queue. |
SecurityModeFilter | A filter to check the security of the incoming request whether it conforms to the security mode setting, in particular the security mode 2. Security mode 1 check will be performed by the MVC controller. |
Namespace: com.plumtree.uiinfrastructure.interpreter.filter
Assembly: uiinfrastructure (in uiinfrastructure.dll)
IInterpreterFilter Members | com.plumtree.uiinfrastructure.interpreter.filter Namespace