File tree Expand file tree Collapse file tree 10 files changed +12
-12
lines changed
main/java/org/springframework/data/mongodb/core
test/java/org/springframework/data/mongodb/core Expand file tree Collapse file tree 10 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 2828import org .springframework .data .mapping .MappingException ;
2929import org .springframework .data .mapping .PersistentEntity ;
3030import org .springframework .data .mapping .PersistentPropertyAccessor ;
31- import org .springframework .data .mapping .context .EntityProjection ;
32- import org .springframework .data .mapping .context .EntityProjectionIntrospector ;
3331import org .springframework .data .mapping .context .MappingContext ;
3432import org .springframework .data .mapping .model .ConvertingPropertyAccessor ;
3533import org .springframework .data .mongodb .core .CollectionOptions .TimeSeriesOptions ;
4341import org .springframework .data .mongodb .core .query .Criteria ;
4442import org .springframework .data .mongodb .core .query .Query ;
4543import org .springframework .data .mongodb .core .timeseries .Granularity ;
44+ import org .springframework .data .projection .EntityProjection ;
45+ import org .springframework .data .projection .EntityProjectionIntrospector ;
4646import org .springframework .data .projection .ProjectionFactory ;
4747import org .springframework .lang .Nullable ;
4848import org .springframework .util .Assert ;
Original file line number Diff line number Diff line change 4949import org .springframework .data .geo .Metric ;
5050import org .springframework .data .mapping .MappingException ;
5151import org .springframework .data .mapping .callback .EntityCallbacks ;
52- import org .springframework .data .mapping .context .EntityProjection ;
5352import org .springframework .data .mapping .context .MappingContext ;
5453import org .springframework .data .mongodb .MongoDatabaseFactory ;
5554import org .springframework .data .mongodb .MongoDatabaseUtils ;
103102import org .springframework .data .mongodb .core .timeseries .Granularity ;
104103import org .springframework .data .mongodb .core .validation .Validator ;
105104import org .springframework .data .mongodb .util .BsonUtils ;
105+ import org .springframework .data .projection .EntityProjection ;
106106import org .springframework .data .util .CloseableIterator ;
107107import org .springframework .data .util .Optionals ;
108108import org .springframework .lang .Nullable ;
Original file line number Diff line number Diff line change 1717
1818import org .bson .Document ;
1919
20- import org .springframework .data .mapping .context .EntityProjection ;
2120import org .springframework .data .mapping .context .MappingContext ;
2221import org .springframework .data .mongodb .core .mapping .MongoPersistentEntity ;
2322import org .springframework .data .mongodb .core .mapping .MongoPersistentProperty ;
2423import org .springframework .data .mongodb .core .mapping .PersistentPropertyTranslator ;
24+ import org .springframework .data .projection .EntityProjection ;
2525import org .springframework .data .util .Predicates ;
2626
2727/**
Original file line number Diff line number Diff line change 3131
3232import org .springframework .data .mapping .PropertyPath ;
3333import org .springframework .data .mapping .PropertyReferenceException ;
34- import org .springframework .data .mapping .context .EntityProjection ;
3534import org .springframework .data .mapping .context .MappingContext ;
3635import org .springframework .data .mongodb .CodecRegistryProvider ;
3736import org .springframework .data .mongodb .MongoExpression ;
5655import org .springframework .data .mongodb .core .query .UpdateDefinition ;
5756import org .springframework .data .mongodb .core .query .UpdateDefinition .ArrayFilter ;
5857import org .springframework .data .mongodb .util .BsonUtils ;
58+ import org .springframework .data .projection .EntityProjection ;
5959import org .springframework .data .util .Lazy ;
6060import org .springframework .lang .Nullable ;
6161import org .springframework .util .ClassUtils ;
Original file line number Diff line number Diff line change 1717
1818import static org .springframework .data .mongodb .core .query .SerializationUtils .*;
1919
20+ import org .springframework .data .projection .EntityProjection ;
2021import reactor .core .publisher .Flux ;
2122import reactor .core .publisher .Mono ;
2223import reactor .util .function .Tuple2 ;
6364import org .springframework .data .mapping .MappingException ;
6465import org .springframework .data .mapping .PersistentEntity ;
6566import org .springframework .data .mapping .callback .ReactiveEntityCallbacks ;
66- import org .springframework .data .mapping .context .EntityProjection ;
6767import org .springframework .data .mapping .context .MappingContext ;
6868import org .springframework .data .mapping .context .MappingContextEvent ;
6969import org .springframework .data .mongodb .MongoDatabaseFactory ;
Original file line number Diff line number Diff line change 6060import org .springframework .data .mapping .PreferredConstructor ;
6161import org .springframework .data .mapping .PreferredConstructor .Parameter ;
6262import org .springframework .data .mapping .callback .EntityCallbacks ;
63- import org .springframework .data .mapping .context .EntityProjection ;
6463import org .springframework .data .mapping .context .MappingContext ;
6564import org .springframework .data .mapping .model .ConvertingPropertyAccessor ;
6665import org .springframework .data .mapping .model .DefaultSpELExpressionEvaluator ;
8584import org .springframework .data .mongodb .core .mapping .event .AfterLoadEvent ;
8685import org .springframework .data .mongodb .core .mapping .event .MongoMappingEvent ;
8786import org .springframework .data .mongodb .util .BsonUtils ;
87+ import org .springframework .data .projection .EntityProjection ;
8888import org .springframework .data .projection .ProjectionFactory ;
8989import org .springframework .data .projection .SpelAwareProxyProjectionFactory ;
9090import org .springframework .data .util .ClassTypeInformation ;
Original file line number Diff line number Diff line change 2525import org .springframework .data .convert .EntityConverter ;
2626import org .springframework .data .convert .EntityReader ;
2727import org .springframework .data .convert .TypeMapper ;
28- import org .springframework .data .mapping .context .EntityProjection ;
2928import org .springframework .data .mongodb .core .mapping .MongoPersistentEntity ;
3029import org .springframework .data .mongodb .core .mapping .MongoPersistentProperty ;
3130import org .springframework .data .mongodb .util .BsonUtils ;
31+ import org .springframework .data .projection .EntityProjection ;
3232import org .springframework .data .projection .ProjectionFactory ;
3333import org .springframework .data .util .TypeInformation ;
3434import org .springframework .lang .Nullable ;
Original file line number Diff line number Diff line change 3232import org .springframework .data .convert .CustomConversions ;
3333import org .springframework .data .geo .Point ;
3434import org .springframework .data .mapping .MappingException ;
35- import org .springframework .data .mapping .context .EntityProjection ;
3635import org .springframework .data .mapping .context .MappingContext ;
3736import org .springframework .data .mongodb .core .convert .AbstractMongoConverter ;
3837import org .springframework .data .mongodb .core .convert .MongoConverter ;
3938import org .springframework .data .mongodb .core .convert .MongoTypeMapper ;
4039import org .springframework .data .mongodb .core .mapping .MongoPersistentEntity ;
4140import org .springframework .data .mongodb .core .mapping .MongoPersistentProperty ;
4241import org .springframework .data .mongodb .core .query .NearQuery ;
42+ import org .springframework .data .projection .EntityProjection ;
4343import org .springframework .data .projection .ProjectionFactory ;
4444import org .springframework .data .util .TypeInformation ;
4545
Original file line number Diff line number Diff line change 2323import org .springframework .core .convert .support .DefaultConversionService ;
2424import org .springframework .core .convert .support .GenericConversionService ;
2525import org .springframework .data .convert .CustomConversions ;
26- import org .springframework .data .mapping .context .EntityProjection ;
2726import org .springframework .data .mapping .context .MappingContext ;
2827import org .springframework .data .mongodb .core .convert .MongoConverters .ObjectIdToStringConverter ;
2928import org .springframework .data .mongodb .core .convert .MongoConverters .StringToObjectIdConverter ;
3029import org .springframework .data .mongodb .core .mapping .MongoPersistentEntity ;
3130import org .springframework .data .mongodb .core .mapping .MongoPersistentProperty ;
31+ import org .springframework .data .projection .EntityProjection ;
3232import org .springframework .data .projection .ProjectionFactory ;
3333import org .springframework .data .util .TypeInformation ;
3434
Original file line number Diff line number Diff line change 6767import org .springframework .data .geo .Shape ;
6868import org .springframework .data .mapping .MappingException ;
6969import org .springframework .data .mapping .callback .EntityCallbacks ;
70- import org .springframework .data .mapping .context .EntityProjection ;
71- import org .springframework .data .mapping .context .EntityProjectionIntrospector ;
7270import org .springframework .data .mapping .model .MappingInstantiationException ;
7371import org .springframework .data .mongodb .core .DocumentTestUtils ;
7472import org .springframework .data .mongodb .core .convert .DocumentAccessorUnitTests .NestedType ;
8482import org .springframework .data .mongodb .core .mapping .TextScore ;
8583import org .springframework .data .mongodb .core .mapping .Unwrapped ;
8684import org .springframework .data .mongodb .core .mapping .event .AfterConvertCallback ;
85+ import org .springframework .data .projection .EntityProjection ;
86+ import org .springframework .data .projection .EntityProjectionIntrospector ;
8787import org .springframework .data .util .ClassTypeInformation ;
8888import org .springframework .lang .NonNull ;
8989import org .springframework .lang .Nullable ;
You can’t perform that action at this time.
0 commit comments