Custom IdRepo #611
-
Hi, I was successfully able to add a subschema while selecting a Data Store. After configuring the mongodb(custom) datastore when I move to the Subjects tab I get a message "There are no data stores configured for this realm." even though a data store is configured. Not sure what exactly is missing. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
@meha-patel2020 seems, you have not implemented functions from IdRepo class public Set<IdType> getSupportedTypes() So default implementation returns and empty set so OpenAM thinks your repository does not support Users and Groups identity types and shows the error message. |
Beta Was this translation helpful? Give feedback.
@meha-patel2020 seems, you have not implemented functions from IdRepo class
So default implementation returns and empty set so OpenAM thinks your repository does not support Users and Groups identity types and shows the error message.
As an example you can check Apache Cassandra implementation Repo.java