Skip to content

Commit

Permalink
docs: enhance documentation at SemistructuredRepositoryProxy
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 27c201a commit 59250fa
Showing 1 changed file with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,18 @@ public class SemistructuredRepositoryProxy<T, K> extends AbstractSemistructuredR
private final Class<?> repositoryType;


SemistructuredRepositoryProxy(SemistructuredTemplate template, EntitiesMetadata entities, Class<?> repositoryType,

/**
* Creates a new instance of ColumnRepositoryProxy.
*
* @param template The SemistructuredTemplate used for column database operations. Must not be {@code null}.
* @param entities The metadata of the entities. Must not be {@code null}.
* @param repositoryType The repository type. Must not be {@code null}.
* @param converters The converters
* @throws NullPointerException If either the template, metadata, or repository type is {@code null}.
*/
public SemistructuredRepositoryProxy(SemistructuredTemplate template,
EntitiesMetadata entities, Class<?> repositoryType,
Converters converters) {
this.template = template;
Class<T> typeClass = (Class) ((ParameterizedType) repositoryType.getGenericInterfaces()[0])
Expand Down

0 comments on commit 59250fa

Please sign in to comment.