[[_fuse_adapter_camel]] ===== Securing an Apache Camel Application You can secure Apache camel endpoints implemented with the http://camel.apache.org/jetty.html[camel-jetty] component by adding securityHandler with `KeycloakJettyAuthenticator` and the proper security constraints injected. You can add the `OSGI-INF/blueprint/blueprint.xml` file to your camel application with a similar configuration as below. The roles, security constraint mappings, and {{book.project.name}} adapter configuration might differ slightly depending on your environment and needs. For example: [source,xml] ---- admin ---- * The `Import-Package` in `META-INF/MANIFEST.MF` needs to contain these imports: [source, subs="attributes"] ---- javax.servlet;version="[3,4)", javax.servlet.http;version="[3,4)", org.apache.camel.*, org.apache.camel;version="[2.13,3)", org.eclipse.jetty.security;version="[8,10)", org.eclipse.jetty.server.nio;version="[8,10)", org.eclipse.jetty.util.security;version="[8,10)", org.keycloak.*;version="{{book.project.versionMvn}}", org.osgi.service.blueprint, org.osgi.service.blueprint.container, org.osgi.service.event, ---- ===== Camel RestDSL Camel RestDSL is a Camel feature used to define your REST endpoints in a fluent way. But you must still use specific implementation classes and provide instructions on how to integrate with {{book.project.name}}. The way to configure the integration mechanism depends on the Camel component for which you configure your RestDSL-defined routes. The following example shows how to configure integration using the jetty component, with references to some of the beans defined in previous Blueprint example. [source,xml] ---- Hello rest service Just an helllo (__This second sentence is returned from a Camel RestDSL endpoint__) ----