summaryrefslogtreecommitdiffstats
path: root/auth/auth-gui/src
diff options
context:
space:
mode:
authorInstrumental <jonathan.gathman@att.com>2018-06-23 11:01:25 -0500
committerInstrumental <jonathan.gathman@att.com>2018-06-23 11:13:11 -0500
commit732344f175150fed87e0140ad75152d325364c8b (patch)
tree472d8fd03ed111a22863f1b0387c60bb51c80825 /auth/auth-gui/src
parent68f3e5a2875f74863b6cbe8eb6dc7138b89668a5 (diff)
JettyStartups to improve new Filters
Issue-ID: AAF-361 Change-Id: I74cac231ebac81466778c1c3ebca16c63ae6f78a Signed-off-by: Instrumental <jonathan.gathman@att.com>
Diffstat (limited to 'auth/auth-gui/src')
-rw-r--r--auth/auth-gui/src/main/java/org/onap/aaf/auth/gui/AAF_GUI.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/auth/auth-gui/src/main/java/org/onap/aaf/auth/gui/AAF_GUI.java b/auth/auth-gui/src/main/java/org/onap/aaf/auth/gui/AAF_GUI.java
index 23713d82..3f26badb 100644
--- a/auth/auth-gui/src/main/java/org/onap/aaf/auth/gui/AAF_GUI.java
+++ b/auth/auth-gui/src/main/java/org/onap/aaf/auth/gui/AAF_GUI.java
@@ -230,13 +230,15 @@ public class AAF_GUI extends AbsService<AuthzEnv, AuthzTrans> implements State<E
public<RET> RET cmClientAsUser(TaggedPrincipal p,Retryable<RET> retryable) throws APIException, LocatorException, CadiException {
return cmCon.hman().best(new HTransferSS(p,app, aafCon.securityInfo()), retryable);
}
+
@Override
- public Filter[] filters() throws CadiException, LocatorException {
+ public Filter[] _filters(Object ... additionalTafLurs) throws CadiException, LocatorException {
try {
return new Filter[] {
new XFrameFilter(XFrameFilter.TYPE.none),
new AuthzTransFilter(env,aafCon(),
- new AAFTrustChecker((Env)env)),
+ new AAFTrustChecker((Env)env),
+ additionalTafLurs),
new OrgLookupFilter()
};
} catch (NumberFormatException e) {