From 8c95760dc54c03df3406211edf9b358dcdb3f371 Mon Sep 17 00:00:00 2001 From: Matthew Helmke Date: Thu, 13 Sep 2018 11:14:56 -0500 Subject: [PATCH] KEYCLOAK-7612 add note that jpa-entity-provider is unsupported --- server_development/topics/extensions.adoc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server_development/topics/extensions.adoc b/server_development/topics/extensions.adoc index 8cf4cc9946..5d1209c536 100644 --- a/server_development/topics/extensions.adoc +++ b/server_development/topics/extensions.adoc @@ -95,6 +95,8 @@ own JPA entities to the {project_name} JPA `EntityManager` . To add your own JPA entities, you need to implement `JpaEntityProviderFactory` and `JpaEntityProvider`. The `JpaEntityProvider` allows you to return a list of your custom JPA entities and provide the location and id of the Liquibase changelog. An example implementation can look like this: +NOTE: This is an unsupported API, which means you can use it but there is no guarantee that it will not be removed or changed without warning. + [source,java] ---- public class ExampleJpaEntityProvider implements JpaEntityProvider {