keycloak-scim/docbook/reference/en/en-US/master.xml

143 lines
5.7 KiB
XML
Raw Normal View History

2014-01-13 01:57:31 +00:00
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
"http://www.docbook.org/xml/4.4/docbookx.dtd"
[
<!ENTITY License SYSTEM "modules/License.xml">
<!ENTITY Overview SYSTEM "modules/Overview.xml">
<!ENTITY Installation SYSTEM "modules/server-installation.xml">
2014-01-21 14:01:03 +00:00
<!ENTITY OpenShift SYSTEM "modules/openshift.xml">
<!ENTITY AdminPermissions SYSTEM "modules/admin-permissions.xml">
2014-05-28 13:31:33 +00:00
<!ENTITY PerRealmAdminPermissions SYSTEM "modules/per-realm-admin-permissions.xml">
2014-05-28 16:33:49 +00:00
<!ENTITY AccessTypes SYSTEM "modules/access-types.xml">
2014-01-13 01:57:31 +00:00
<!ENTITY AdapterConfig SYSTEM "modules/adapter-config.xml">
2014-02-14 14:50:49 +00:00
<!ENTITY JBossAdapter SYSTEM "modules/jboss-adapter.xml">
2014-02-25 00:58:54 +00:00
<!ENTITY JavascriptAdapter SYSTEM "modules/javascript-adapter.xml">
2014-10-29 18:48:10 +00:00
<!ENTITY TomcatAdapter SYSTEM "modules/tomcat-adapter.xml">
2014-11-08 02:10:15 +00:00
<!ENTITY Jetty9Adapter SYSTEM "modules/jetty9-adapter.xml">
2014-11-12 15:44:20 +00:00
<!ENTITY Jetty8Adapter SYSTEM "modules/jetty8-adapter.xml">
2014-03-07 13:00:09 +00:00
<!ENTITY InstalledApplications SYSTEM "modules/installed-applications.xml">
2014-08-08 22:33:37 +00:00
<!ENTITY Logout SYSTEM "modules/logout.xml">
2014-10-22 19:18:24 +00:00
<!ENTITY SAML SYSTEM "modules/saml.xml">
<!ENTITY SocialConfig SYSTEM "modules/social-config.xml">
<!ENTITY SocialFacebook SYSTEM "modules/social-facebook.xml">
<!ENTITY SocialGitHub SYSTEM "modules/social-github.xml">
<!ENTITY SocialGoogle SYSTEM "modules/social-google.xml">
<!ENTITY SocialTwitter SYSTEM "modules/social-twitter.xml">
<!ENTITY SocialProviderSPI SYSTEM "modules/social-spi.xml">
2014-02-04 14:46:51 +00:00
<!ENTITY Themes SYSTEM "modules/themes.xml">
2014-02-14 14:50:49 +00:00
<!ENTITY Migration SYSTEM "modules/MigrationFromOlderVersions.xml">
<!ENTITY Email SYSTEM "modules/email.xml">
2014-02-14 16:30:56 +00:00
<!ENTITY Roles SYSTEM "modules/roles.xml">
2014-05-28 16:33:49 +00:00
<!ENTITY DirectAccess SYSTEM "modules/direct-access.xml">
2014-02-25 21:23:29 +00:00
<!ENTITY CORS SYSTEM "modules/cors.xml">
2014-02-25 01:20:29 +00:00
<!ENTITY Timeouts SYSTEM "modules/timeouts.xml">
2014-08-27 10:41:40 +00:00
<!ENTITY Events SYSTEM "modules/events.xml">
2014-05-28 16:33:49 +00:00
<!ENTITY AdminApi SYSTEM "modules/admin-rest-api.xml">
2014-08-04 16:25:11 +00:00
<!ENTITY UserFederation SYSTEM "modules/user-federation.xml">
<!ENTITY ExportImport SYSTEM "modules/export-import.xml">
2014-07-18 15:43:44 +00:00
<!ENTITY ServerCache SYSTEM "modules/cache.xml">
2014-09-19 15:35:15 +00:00
<!ENTITY SecurityVulnerabilities SYSTEM "modules/security-vulnerabilities.xml">
2014-10-06 11:58:22 +00:00
<!ENTITY Clustering SYSTEM "modules/clustering.xml">
<!ENTITY ApplicationClustering SYSTEM "modules/application-clustering.xml">
<!ENTITY MultiTenancy SYSTEM "modules/multi-tenancy.xml">
2014-01-13 01:57:31 +00:00
]>
<book>
<bookinfo>
<title>Keycloak Reference Guide</title>
<subtitle>SSO for Web Apps and REST Services</subtitle>
2014-09-02 11:22:15 +00:00
<releaseinfo>&project.version;</releaseinfo>
2014-01-13 01:57:31 +00:00
</bookinfo>
<toc/>
<preface id="preface" revision="1">
<title>Preface</title>
<para>
In some of the example listings, what is meant to be displayed on one line does not fit
inside the available page width. These lines have been broken up. A '\' at the end of a
line means that a break has been introduced to fit in the page, with the following lines
indented. So:
2014-03-12 16:57:30 +00:00
<programlisting>
Let's pretend to have an extremely \
long line that \
does not fit
This one is short
</programlisting>
2014-01-13 01:57:31 +00:00
Is really:
2014-03-12 16:57:30 +00:00
<programlisting>
Let's pretend to have an extremely long line that does not fit
This one is short
</programlisting>
2014-01-13 01:57:31 +00:00
</para>
</preface>
&License;
&Overview;
&Installation;
2014-01-21 14:01:03 +00:00
&OpenShift;
&AdminPermissions;
2014-05-28 13:31:33 +00:00
&PerRealmAdminPermissions;
2014-01-13 01:57:31 +00:00
<chapter>
<title>Adapters</title>
<para>
2014-03-12 16:57:30 +00:00
Keycloak can secure a wide variety of application types. This section defines which application
2014-01-13 01:57:31 +00:00
types are supported and how to configure and install them so that you can use Keycloak to secure
your applications.
</para>
&AdapterConfig;
2014-02-14 14:50:49 +00:00
&JBossAdapter;
2014-10-29 18:48:10 +00:00
&TomcatAdapter;
2014-11-08 02:10:15 +00:00
&Jetty9Adapter;
2014-11-12 15:44:20 +00:00
&Jetty8Adapter;
2014-02-25 00:58:54 +00:00
&JavascriptAdapter;
2014-03-07 13:00:09 +00:00
&InstalledApplications;
2014-08-08 22:33:37 +00:00
&Logout;
&MultiTenancy;
2014-01-13 01:57:31 +00:00
</chapter>
<chapter>
<title>Social</title>
<para>
2014-01-20 14:38:11 +00:00
Keycloak makes it easy to let users log in to your application using an existing account with a social network.
Currently Facebook, Google and Twitter is supported with more planned for the future. There's also a Social
Provider SPI that makes it relatively simple to add additional social networks.
</para>
&SocialConfig;
&SocialFacebook;
&SocialGitHub;
&SocialGoogle;
&SocialTwitter;
&SocialProviderSPI;
</chapter>
2014-02-04 14:46:51 +00:00
&Themes;
<chapter>
<title>Email</title>
<para>
Keycloak sends emails to users to verify their email address. Emails are also used to allow users to
safely restore their username and passwords.
</para>
&Email;
</chapter>
2014-05-28 16:33:49 +00:00
&AccessTypes;
2014-02-14 16:30:56 +00:00
&Roles;
2014-05-28 16:33:49 +00:00
&DirectAccess;
2014-02-25 21:23:29 +00:00
&CORS;
2014-02-25 01:20:29 +00:00
&Timeouts;
2014-05-28 16:33:49 +00:00
&AdminApi;
2014-08-27 10:41:40 +00:00
&Events;
2014-08-04 16:25:11 +00:00
&UserFederation;
&ExportImport;
2014-07-18 15:43:44 +00:00
&ServerCache;
2014-10-22 19:18:24 +00:00
&SAML;
2014-09-19 15:35:15 +00:00
&SecurityVulnerabilities;
2014-10-06 11:58:22 +00:00
&Clustering;
&ApplicationClustering;
2014-02-14 14:50:49 +00:00
&Migration;
2014-01-13 01:57:31 +00:00
</book>