Skip to content

Commit

Permalink
docs: update documentation at mapping column
Browse files Browse the repository at this point in the history
Signed-off-by: Otavio Santana <otaviopolianasantana@gmail.com>
  • Loading branch information
otaviojava committed Mar 2, 2024
1 parent 5f144e7 commit 6546585
Showing 1 changed file with 9 additions and 1 deletion.
Expand Up @@ -33,7 +33,15 @@
import java.util.Set;

/**
* JNoSQL discoveryBean to CDI extension to register Repository
* This class serves as a JNoSQL discovery bean for CDI extension, responsible for registering Repository instances.
* It extends {@link AbstractBean} and is parameterized with type {@code T} representing the repository type.
* <p>
* Upon instantiation, it initializes with the provided repository type, provider name, and qualifiers.
* The provider name specifies the database provider for the repository.
* </p>
*
* @param <T> the type of the repository
* @see AbstractBean
*/
public class RepositoryColumnBean<T extends DataRepository<?, ?>> extends AbstractBean<T> {

Expand Down

0 comments on commit 6546585

Please sign in to comment.