Uses of Interface
org.hibernate.resource.beans.spi.ManagedBean
-
Packages that use ManagedBean Package Description org.hibernate.boot.model.convert.internal org.hibernate.boot.model.internal org.hibernate.mapping This package defines the Hibernate configuration-time mapping model.org.hibernate.query.results.complete Support for immutable result/fetch builder graph nodes built from static sources such asSqlResultSetMapping
or thehbm.xml
mapping element<resultset/>
.org.hibernate.resource.beans.container.spi An SPI abstracting over CDI-like bean containers.org.hibernate.resource.beans.internal org.hibernate.resource.beans.spi Defines an SPI for integration with CDI-like containers.org.hibernate.type A HibernateType
is a strategy for mapping a Java property type to a JDBC type or types.org.hibernate.type.descriptor.converter.internal Implements the SPI for basic-typed value conversions.org.hibernate.type.descriptor.converter.spi An SPI for basic-typed value conversions, including support for handling JPAAttributeConverter
instances as part of the HibernateType
system. -
-
Uses of ManagedBean in org.hibernate.boot.model.convert.internal
Methods in org.hibernate.boot.model.convert.internal that return ManagedBean Modifier and Type Method Description protected abstract ManagedBean<? extends AttributeConverter<?,?>>
AbstractConverterDescriptor. createManagedBean(JpaAttributeConverterCreationContext context)
protected ManagedBean<? extends AttributeConverter<?,?>>
ClassBasedConverterDescriptor. createManagedBean(JpaAttributeConverterCreationContext context)
protected ManagedBean<? extends AttributeConverter<?,?>>
InstanceBasedConverterDescriptor. createManagedBean(JpaAttributeConverterCreationContext context)
-
Uses of ManagedBean in org.hibernate.boot.model.internal
Classes in org.hibernate.boot.model.internal that implement ManagedBean Modifier and Type Class Description class
DelayedParameterizedTypeBean<T>
ManagedBean implementation for delayedParameterizedType
handling (parameter injection) for a UserCollectionTypeMethods in org.hibernate.boot.model.internal that return ManagedBean Modifier and Type Method Description static <T> ManagedBean<T>
DelayedParameterizedTypeBean. delayedConfigBean(String role, ManagedBean<T> bean, Properties properties)
Create a bean wrapper which delays parameter injection until the bean instance is needed if there are parametersstatic ManagedBean<? extends UserCollectionType>
CollectionBinder. resolveCustomType(org.hibernate.annotations.common.reflection.XProperty property, CollectionType typeAnnotation, MetadataBuildingContext context)
Methods in org.hibernate.boot.model.internal that return types with arguments of type ManagedBean Modifier and Type Method Description Supplier<ManagedBean<? extends UserCollectionType>>
CollectionBinder. getCustomTypeBeanResolver()
Methods in org.hibernate.boot.model.internal with parameters of type ManagedBean Modifier and Type Method Description static <T> ManagedBean<T>
DelayedParameterizedTypeBean. delayedConfigBean(String role, ManagedBean<T> bean, Properties properties)
Create a bean wrapper which delays parameter injection until the bean instance is needed if there are parametersConstructors in org.hibernate.boot.model.internal with parameters of type ManagedBean Constructor Description DelayedParameterizedTypeBean(ManagedBean<T> underlyingBean, Properties properties)
-
Uses of ManagedBean in org.hibernate.mapping
Methods in org.hibernate.mapping that return ManagedBean Modifier and Type Method Description static ManagedBean<UserCollectionType>
MappingHelper. createLocalUserCollectionTypeBean(String role, Class<? extends UserCollectionType> implementation, boolean hasParameters, Map<String,String> parameters)
-
Uses of ManagedBean in org.hibernate.query.results.complete
Constructors in org.hibernate.query.results.complete with parameters of type ManagedBean Constructor Description CompleteResultBuilderBasicValuedConverted(String explicitColumnName, ManagedBean<? extends AttributeConverter<O,R>> converterBean, JavaType<? extends AttributeConverter<O,R>> converterJtd, BasicJavaType<O> domainJavaType, BasicValuedMapping underlyingMapping)
-
Uses of ManagedBean in org.hibernate.resource.beans.container.spi
Classes in org.hibernate.resource.beans.container.spi that implement ManagedBean Modifier and Type Class Description class
FallbackContainedBean<B>
-
Uses of ManagedBean in org.hibernate.resource.beans.internal
Methods in org.hibernate.resource.beans.internal that return ManagedBean Modifier and Type Method Description <T> ManagedBean<T>
ManagedBeanRegistryImpl. getBean(Class<T> beanClass)
<T> ManagedBean<T>
ManagedBeanRegistryImpl. getBean(Class<T> beanClass, BeanInstanceProducer fallbackBeanInstanceProducer)
<T> ManagedBean<T>
ManagedBeanRegistryImpl. getBean(String beanName, Class<T> beanContract)
<T> ManagedBean<T>
ManagedBeanRegistryImpl. getBean(String beanName, Class<T> beanContract, BeanInstanceProducer fallbackBeanInstanceProducer)
-
Uses of ManagedBean in org.hibernate.resource.beans.spi
Classes in org.hibernate.resource.beans.spi that implement ManagedBean Modifier and Type Class Description class
ProvidedInstanceManagedBeanImpl<T>
ManagedBean
implementation for cases where we have been handed an actual instance to use.Methods in org.hibernate.resource.beans.spi that return ManagedBean Modifier and Type Method Description <T> ManagedBean<T>
ManagedBeanRegistry. getBean(Class<T> beanClass)
Get a bean reference by class.<T> ManagedBean<T>
ManagedBeanRegistry. getBean(Class<T> beanContract, BeanInstanceProducer fallbackBeanInstanceProducer)
Get a bean reference by class with an explicit fallback bean instance producer.<T> ManagedBean<T>
ManagedBeanRegistry. getBean(String beanName, Class<T> beanContract)
Get a bean reference by name and contract.<T> ManagedBean<T>
ManagedBeanRegistry. getBean(String beanName, Class<T> beanContract, BeanInstanceProducer fallbackBeanInstanceProducer)
Get a bean reference by name and contract with an explicit fallback bean instance producer. -
Uses of ManagedBean in org.hibernate.type
Constructors in org.hibernate.type with parameters of type ManagedBean Constructor Description CustomCollectionType(ManagedBean<? extends UserCollectionType> userTypeBean, String role, String foreignKeyPropertyName)
-
Uses of ManagedBean in org.hibernate.type.descriptor.converter.internal
Methods in org.hibernate.type.descriptor.converter.internal that return ManagedBean Modifier and Type Method Description ManagedBean<? extends AttributeConverter<O,R>>
JpaAttributeConverterImpl. getConverterBean()
Constructors in org.hibernate.type.descriptor.converter.internal with parameters of type ManagedBean Constructor Description JpaAttributeConverterImpl(ManagedBean<? extends AttributeConverter<O,R>> attributeConverterBean, JavaType<? extends AttributeConverter<O,R>> converterJtd, Class<O> domainJavaType, Class<R> jdbcJavaType, JpaAttributeConverterCreationContext context)
JpaAttributeConverterImpl(ManagedBean<? extends AttributeConverter<O,R>> attributeConverterBean, JavaType<? extends AttributeConverter<O,R>> converterJtd, JavaType<O> domainJtd, JavaType<R> jdbcJtd)
-
Uses of ManagedBean in org.hibernate.type.descriptor.converter.spi
Methods in org.hibernate.type.descriptor.converter.spi that return ManagedBean Modifier and Type Method Description ManagedBean<? extends AttributeConverter<O,R>>
JpaAttributeConverter. getConverterBean()
-