Skip to content

Commit

Permalink
fix/33_fix_mapper_isnull_operator (#34)
Browse files Browse the repository at this point in the history
Co-authored-by: Sebastien Moysan <[email protected]>
  • Loading branch information
arnaud-thorel-of and Sebastien Moysan authored Apr 4, 2024
1 parent b2015fc commit fe79da9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package fr.ouestfrance.querydsl.postgrest.services.ext;

import java.util.List;

import fr.ouestfrance.querydsl.FilterOperation;
import fr.ouestfrance.querydsl.model.GroupFilter;
import fr.ouestfrance.querydsl.postgrest.mappers.*;
Expand All @@ -10,6 +8,8 @@
import fr.ouestfrance.querydsl.service.ext.Mapper;
import fr.ouestfrance.querydsl.service.ext.QueryDslProcessorService;

import java.util.List;

/**
* Concrete implementation of QueryDslProcessorService
*/
Expand All @@ -22,7 +22,7 @@ public class PostgrestQueryProcessorService implements QueryDslProcessorService<
new GreaterThanEqualsMapper(), new GreaterThanMapper(),
new InMapper(), new LessThanEqualsMapper(), new LessThanMapper(),
new LikeMapper(), new NotEqualsMapper(), new NotInMapper(),
new CaseInsensitiveLikeMapper(), new ContainsMapper(), new ContainedMapper());
new CaseInsensitiveLikeMapper(), new ContainsMapper(), new ContainedMapper(), new IsNullMapper());

@Override
public Mapper<Filter> getMapper(Class<? extends FilterOperation> operation) {
Expand Down

0 comments on commit fe79da9

Please sign in to comment.