From 56a94511286cc3cb12429f805d3baeaaf1097530 Mon Sep 17 00:00:00 2001 From: mposolda Date: Wed, 1 Apr 2015 22:12:26 +0200 Subject: [PATCH] minor improve in fuse example --- .../main/java/org/keycloak/example/CamelHelloProcessor.java | 1 - examples/fuse/fuse-admin/README.md | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/examples/fuse/camel/src/main/java/org/keycloak/example/CamelHelloProcessor.java b/examples/fuse/camel/src/main/java/org/keycloak/example/CamelHelloProcessor.java index fc67a65621..6ef2be24c0 100644 --- a/examples/fuse/camel/src/main/java/org/keycloak/example/CamelHelloProcessor.java +++ b/examples/fuse/camel/src/main/java/org/keycloak/example/CamelHelloProcessor.java @@ -20,7 +20,6 @@ public class CamelHelloProcessor implements Processor { String username = accessToken.getPreferredUsername(); String fullName = accessToken.getName(); - // send a html response with fullName from LDAP exchange.getOut().setBody("Hello " + username + "! Your full name is " + fullName + "."); } } diff --git a/examples/fuse/fuse-admin/README.md b/examples/fuse/fuse-admin/README.md index d22d45dfd1..faa26870ca 100644 --- a/examples/fuse/fuse-admin/README.md +++ b/examples/fuse/fuse-admin/README.md @@ -29,10 +29,10 @@ This file contains configuration of the client application, which is used by JAA 4) Start Fuse and install `keycloak` JAAS realm into Fuse. This could be done easily by installing `keycloak-jaas` feature, which has JAAS realm predefined (you are able to override it by using your own `keycloak` JAAS realm with higher ranking). As long as you already installed `keycloak-fuse-example` feature as mentioned -in [examples readme](../README.md), you can skip this step as `keycloak-jaas` is installed already. Otherwise use those commands (replace Keycloak version with current one): +in [examples readme](../README.md), you can skip this step as `keycloak-jaas` is installed already. Otherwise use those commands (replace Keycloak version in this command with the current version): ``` -features:addurl mvn:org.keycloak/keycloak-osgi-features/1.1.0.Final/xml/features +features:addurl mvn:org.keycloak/keycloak-osgi-features/1.2.0.Beta1/xml/features features:install keycloak-jaas ```