Uses of Class
org.hibernate.engine.spi.FilterDefinition
-
Packages that use FilterDefinition Package Description org.hibernate This package defines the central Hibernate APIs, beginning withSessionFactory
, which represents an instance of Hibernate at runtime and is the source of new instances ofSession
andStatelessSession
, the most important APIs exposing persistence-related operations for entities.org.hibernate.boot This package contains the interfaces that make up the bootstrap API for Hibernate.org.hibernate.boot.internal org.hibernate.boot.spi A range of SPIs allowing integration with—and customization of—the process of building metadata.org.hibernate.engine.spi This package defines some central internal SPI abstractions used throughout the implementation of Hibernate.org.hibernate.internal An internal package containing implementations of central Hibernate APIs, mostly defined inorg.hibernate
. -
-
Uses of FilterDefinition in org.hibernate
Methods in org.hibernate that return FilterDefinition Modifier and Type Method Description FilterDefinition
Filter. getFilterDefinition()
Deprecated.There is no plan to remove this operation, but its use should be avoided sinceFilterDefinition
is an SPI type, and so this operation is a layer-breaker.FilterDefinition
SessionFactory. getFilterDefinition(String filterName)
Deprecated.There is no plan to remove this operation, but its use should be avoided sinceFilterDefinition
is an SPI type, and so this operation is a layer-breaker. -
Uses of FilterDefinition in org.hibernate.boot
Methods in org.hibernate.boot that return FilterDefinition Modifier and Type Method Description FilterDefinition
Metadata. getFilterDefinition(String name)
Retrieves a filter definition by name.Methods in org.hibernate.boot that return types with arguments of type FilterDefinition Modifier and Type Method Description Map<String,FilterDefinition>
Metadata. getFilterDefinitions()
Retrieves the complete map of filter definitions. -
Uses of FilterDefinition in org.hibernate.boot.internal
Methods in org.hibernate.boot.internal that return FilterDefinition Modifier and Type Method Description FilterDefinition
InFlightMetadataCollectorImpl. getFilterDefinition(String name)
FilterDefinition
MetadataImpl. getFilterDefinition(String name)
Methods in org.hibernate.boot.internal that return types with arguments of type FilterDefinition Modifier and Type Method Description Map<String,FilterDefinition>
InFlightMetadataCollectorImpl. getFilterDefinitions()
Map<String,FilterDefinition>
MetadataImpl. getFilterDefinitions()
Methods in org.hibernate.boot.internal with parameters of type FilterDefinition Modifier and Type Method Description void
InFlightMetadataCollectorImpl. addFilterDefinition(FilterDefinition filterDefinition)
-
Uses of FilterDefinition in org.hibernate.boot.spi
Methods in org.hibernate.boot.spi that return FilterDefinition Modifier and Type Method Description FilterDefinition
AbstractDelegatingMetadata. getFilterDefinition(String name)
Methods in org.hibernate.boot.spi that return types with arguments of type FilterDefinition Modifier and Type Method Description Map<String,FilterDefinition>
AbstractDelegatingMetadata. getFilterDefinitions()
Methods in org.hibernate.boot.spi with parameters of type FilterDefinition Modifier and Type Method Description void
InFlightMetadataCollector. addFilterDefinition(FilterDefinition definition)
Adds a filter definition to this repository. -
Uses of FilterDefinition in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi that return FilterDefinition Modifier and Type Method Description FilterDefinition
SessionFactoryDelegatingImpl. getFilterDefinition(String filterName)
Deprecated.FilterDefinition
SessionFactoryImplementor. getFilterDefinition(String filterName)
Methods in org.hibernate.engine.spi that return types with arguments of type FilterDefinition Modifier and Type Method Description Collection<FilterDefinition>
SessionFactoryDelegatingImpl. getAutoEnabledFilters()
Collection<FilterDefinition>
SessionFactoryImplementor. getAutoEnabledFilters()
-
Uses of FilterDefinition in org.hibernate.internal
Methods in org.hibernate.internal that return FilterDefinition Modifier and Type Method Description FilterDefinition
FilterImpl. getFilterDefinition()
FilterDefinition
SessionFactoryImpl. getFilterDefinition(String filterName)
Methods in org.hibernate.internal that return types with arguments of type FilterDefinition Modifier and Type Method Description Collection<FilterDefinition>
SessionFactoryImpl. getAutoEnabledFilters()
Constructors in org.hibernate.internal with parameters of type FilterDefinition Constructor Description FilterImpl(FilterDefinition configuration)
Constructs a new FilterImpl.
-