Examples of HomeRealmCallback


Examples of org.apache.cxf.fediz.core.spi.HomeRealmCallback

        Assert.assertEquals(TestCallbackHandler.TEST_WAUTH, wAuth);
       
        Object homeRealmObj = fp.getHomeRealm();
        Assert.assertTrue(homeRealmObj instanceof CallbackHandler);
        CallbackHandler hrCB = (CallbackHandler)homeRealmObj;
        HomeRealmCallback callbackHR = new HomeRealmCallback(null);
        hrCB.handle(new Callback[] {callbackHR});
        String hr = callbackHR.getHomeRealm();
        Assert.assertEquals(TestCallbackHandler.TEST_HOME_REALM, hr);
    }
View Full Code Here

Examples of org.apache.cxf.fediz.core.spi.HomeRealmCallback

            if (homeRealmObj != null) {
                if (homeRealmObj instanceof String) {
                    homeRealm = (String)homeRealmObj;
                } else if (homeRealmObj instanceof CallbackHandler) {
                    CallbackHandler hrCB = (CallbackHandler)homeRealmObj;
                    HomeRealmCallback callback = new HomeRealmCallback(request);
                    hrCB.handle(new Callback[] {callback});
                    homeRealm = callback.getHomeRealm();
                }
            }
            LOG.info("HomeRealm: " + homeRealm);
           
            StringBuilder sb = new StringBuilder();
View Full Code Here

Examples of org.apache.cxf.fediz.core.spi.HomeRealmCallback

        if (homeRealmObj != null) {
            if (homeRealmObj instanceof String) {
                homeRealm = (String)homeRealmObj;
            } else if (homeRealmObj instanceof CallbackHandler) {
                CallbackHandler hrCB = (CallbackHandler)homeRealmObj;
                HomeRealmCallback callback = new HomeRealmCallback(request);
                hrCB.handle(new Callback[] {callback});
                homeRealm = callback.getHomeRealm();
            }
        }
        return homeRealm;
    }
View Full Code Here

Examples of org.apache.cxf.fediz.core.spi.HomeRealmCallback

        Assert.assertEquals(TestCallbackHandler.TEST_WREQ, wReq);
       
        Object homeRealmObj = fp.getHomeRealm();
        Assert.assertTrue(homeRealmObj instanceof CallbackHandler);
        CallbackHandler hrCB = (CallbackHandler)homeRealmObj;
        HomeRealmCallback callbackHR = new HomeRealmCallback(null);
        hrCB.handle(new Callback[] {callbackHR});
        String hr = callbackHR.getHomeRealm();
        Assert.assertEquals(TestCallbackHandler.TEST_HOME_REALM, hr);
       
        Object wtRealmObj = fp.getRealm();
        Assert.assertTrue(wtRealmObj instanceof CallbackHandler);
        CallbackHandler wtrCB = (CallbackHandler)wtRealmObj;
View Full Code Here

Examples of org.apache.cxf.fediz.core.spi.HomeRealmCallback

        + "</RequestSecurityToken>";
   
    public void handle(Callback[] callbacks) throws IOException, UnsupportedCallbackException {
        for (int i = 0; i < callbacks.length; i++) {
            if (callbacks[i] instanceof HomeRealmCallback) {
                HomeRealmCallback callback = (HomeRealmCallback) callbacks[i];
                callback.setHomeRealm(TEST_HOME_REALM);
            } else if (callbacks[i] instanceof RealmCallback) {
                RealmCallback callback = (RealmCallback)callbacks[i];
                callback.setRealm(TEST_WTREALM);
            } else if (callbacks[i] instanceof WAuthCallback) {
                WAuthCallback callback = (WAuthCallback) callbacks[i];
                callback.setWauth(TEST_WAUTH);
            } else if (callbacks[i] instanceof WReqCallback) {
                WReqCallback callback = (WReqCallback) callbacks[i];
                callback.setWreq(TEST_WREQ);
            } else if (callbacks[i] instanceof IDPCallback) {
                IDPCallback callback = (IDPCallback) callbacks[i];
                callback.setIssuerUrl(new URL(TEST_IDP));
            } else if (callbacks[i] instanceof SignInQueryCallback) {
                SignInQueryCallback callback = (SignInQueryCallback) callbacks[i];
                Map<String, String> queryParamMap = new HashMap<String, String>();
                queryParamMap.put("pubid", "myid");
                queryParamMap.put("testenc", "<=>");
                callback.setSignInQueryParamMap(queryParamMap);
            } else {
                throw new UnsupportedCallbackException(callbacks[i], "Unrecognized Callback");
            }
        }
    }
View Full Code Here

Examples of org.apache.cxf.fediz.core.spi.HomeRealmCallback

        Assert.assertEquals(TestCallbackHandler.TEST_WAUTH, wAuth);
       
        Object homeRealmObj = fp.getHomeRealm();
        Assert.assertTrue(homeRealmObj instanceof CallbackHandler);
        CallbackHandler hrCB = (CallbackHandler)homeRealmObj;
        HomeRealmCallback callbackHR = new HomeRealmCallback(null);
        hrCB.handle(new Callback[] {callbackHR});
        String hr = callbackHR.getHomeRealm();
        Assert.assertEquals(TestCallbackHandler.TEST_HOME_REALM, hr);
    }
View Full Code Here

Examples of org.apache.cxf.fediz.core.spi.HomeRealmCallback

    static final String TEST_WAUTH = "up";
   
    public void handle(Callback[] callbacks) throws IOException, UnsupportedCallbackException {
        for (int i = 0; i < callbacks.length; i++) {
            if (callbacks[i] instanceof HomeRealmCallback) {
                HomeRealmCallback callback = (HomeRealmCallback) callbacks[i];
                callback.setHomeRealm(TEST_HOME_REALM);
            } else if (callbacks[i] instanceof WAuthCallback) {
                WAuthCallback callback = (WAuthCallback) callbacks[i];
                callback.setWauth(TEST_WAUTH);
            } else if (callbacks[i] instanceof IDPCallback) {
                IDPCallback callback = (IDPCallback) callbacks[i];
                callback.setIssuerUrl(new URL(TEST_IDP));
            } else {
                throw new UnsupportedCallbackException(callbacks[i], "Unrecognized Callback");
            }
        }
    }
View Full Code Here

Examples of org.apache.cxf.fediz.core.spi.HomeRealmCallback

    public void handle(Callback[] callbacks) throws IOException,
        UnsupportedCallbackException {
        for (int i = 0; i < callbacks.length; i++) {
            if (callbacks[i] instanceof HomeRealmCallback) {
                HomeRealmCallback callback = (HomeRealmCallback) callbacks[i];
                String homeRealm = (String)callback.getRequest().getAttribute("whr");
                if (homeRealm == null || homeRealm.length() == 0) {
                    LOG.debug("No home realm found in request");
                } else {
                    LOG.info("Home realm '" + homeRealm + "' found in request");
                    callback.setHomeRealm(homeRealm);
                }

            } else {
                throw new UnsupportedCallbackException(callbacks[i], "Unrecognized Callback");
            }
View Full Code Here

Examples of org.apache.cxf.fediz.core.spi.HomeRealmCallback

            if (homeRealmObj != null) {
                if (homeRealmObj instanceof String) {
                    homeRealm = (String)homeRealmObj;
                } else if (homeRealmObj instanceof CallbackHandler) {
                    CallbackHandler hrCB = (CallbackHandler)homeRealmObj;
                    HomeRealmCallback callback = new HomeRealmCallback(request);
                    hrCB.handle(new Callback[] {callback});
                    homeRealm = callback.getHomeRealm();
                }
            }
            LOG.info("HomeRealm: " + homeRealm);
           
            Object freshnessObj = ((FederationProtocol)config.getProtocol()).getFreshness();
            String freshness = null;
            if (freshnessObj != null) {
                if (freshnessObj instanceof String) {
                    freshness = (String)freshnessObj;
                } else if (freshnessObj instanceof CallbackHandler) {
                    CallbackHandler frCB = (CallbackHandler)freshnessObj;
                    FreshnessCallback callback = new FreshnessCallback(request);
                    frCB.handle(new Callback[] {callback});
                    freshness = callback.getFreshness();
                }
            }
            LOG.info("Freshness: " + freshness);
            
            StringBuilder sb = new StringBuilder();
View Full Code Here

Examples of org.apache.cxf.fediz.core.spi.HomeRealmCallback

        if (homeRealmObj != null) {
            if (homeRealmObj instanceof String) {
                homeRealm = (String)homeRealmObj;
            } else if (homeRealmObj instanceof CallbackHandler) {
                CallbackHandler hrCB = (CallbackHandler)homeRealmObj;
                HomeRealmCallback callback = new HomeRealmCallback(request);
                hrCB.handle(new Callback[] {callback});
                homeRealm = callback.getHomeRealm();
            }
        }
        return homeRealm;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.