
ru.sergkorot.dynamic.operation.SpecificationGlueOperationProviderImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-boot-operation-starter Show documentation
Show all versions of spring-boot-operation-starter Show documentation
Library for dynamic searching into the databases
The newest version!
package ru.sergkorot.dynamic.operation;
import org.springframework.data.jpa.domain.Specification;
import org.springframework.stereotype.Component;
import ru.sergkorot.dynamic.glue.Glue;
import ru.sergkorot.dynamic.glue.GlueOperationProvider;
@Component
public class SpecificationGlueOperationProviderImpl implements GlueOperationProvider> {
@Override
public Glue> and() {
return Specification::allOf;
}
@Override
public Glue> or() {
return Specification::anyOf;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy