in Education by

What are the entities of Intercepting Filter pattern?

Please log in or register to answer this question.

1 Answer

0 votes
by

What are the entities of Intercepting Filter pattern?

Following are the entities of this type of design pattern.

Filter - Filter which will performs certain task prior or after execution of request by request handler.

Filter Chain - Filter Chain carries multiple filters and help to execute them in defined order on target.

Target - Target object is the request handler.

Filter Manager - Filter Manager manages the filters and Filter Chain.

Client - Client is the object who sends request to the Target object.

Related questions

0 votes
asked Feb 13, 2022 in Education by JackTerrance
0 votes
asked May 23, 2021 in Technology by JackTerrance
0 votes
asked Feb 19, 2022 in Education by JackTerrance
...