This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"components": { | |
"schemas": { | |
"Foo": { | |
"oneOf": [ | |
{ | |
"properties": { | |
"contents": { | |
"items": { | |
"anyOf": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class InheritanceAwareMongoRepository<T, ID extends Serializable> | |
extends SimpleMongoRepository<T, ID> { | |
private final MongoOperations mongoOperations; | |
private final MongoEntityInformation<T, ID> entityInformation; | |
public InheritanceAwareMongoRepository( | |
MongoEntityInformation<T, ID> metadata, | |
MongoOperations mongoOperations) { | |
super(metadata, mongoOperations); |