|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface BlockageController
Interface that performs business blockage check in Filter.
Class that implements this interface provides the business blockage check function.
The implementation class of this interface should be thread safe.
*For the configuration method of the implementation class of this interface, refer toBlockageControlFilter
.
AuthenticationControlFilter
,
AuthenticationController
,
AuthorizationControlFilter
,
AuthorizationController
,
BlockageControlFilter
,
ServerBlockageControlFilter
,
ServerBlockageController
Method Summary | |
---|---|
void |
blockade(java.lang.String path)
Sets the path that needs to be changed to blocked state. |
void |
blockade(java.lang.String path,
javax.servlet.ServletRequest req)
Sets the path that needs to be changed to blocked state. |
boolean |
isBlockaded(java.lang.String path)
Checks if the action of specified path is in "Business blockage state". |
boolean |
isBlockaded(java.lang.String path,
javax.servlet.ServletRequest req)
Checks if the action of specified path is in "Business blockage" state. |
boolean |
isCheckRequired(javax.servlet.ServletRequest req)
Checks if the business blockage check is required. |
void |
open(java.lang.String path)
Releases the path which is in blocked state. |
void |
open(java.lang.String path,
javax.servlet.ServletRequest req)
Releases the path which is in blocked state. |
Method Detail |
---|
void blockade(java.lang.String path)
path
- Path that needs to be changed to blocked statevoid blockade(java.lang.String path, javax.servlet.ServletRequest req)
path
- Path informationreq
- HTTP requestboolean isBlockaded(java.lang.String path)
path
- Path information
true
if it is in business blockage stateboolean isBlockaded(java.lang.String path, javax.servlet.ServletRequest req)
path
- Path informationreq
- HTTP request
true
if it is in busines blockage stateboolean isCheckRequired(javax.servlet.ServletRequest req)
req
- ServletRequest instance to be checked
true
if check is requiredvoid open(java.lang.String path)
path
- Path to be releasedvoid open(java.lang.String path, javax.servlet.ServletRequest req)
path
- Path to be releasedreq
- HTTP request
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |