Skip navigation links
  • Overview
  • Package
  • Class
  • Use
  • Tree
  • Deprecated
  • Index
  • Help

Deprecated API

Contents

  • Interfaces
  • Methods
  • Constructors
  • Annotation Type Elements
  • Deprecated Interfaces
    Interface
    Description
    org.hibernate.search.mapper.pojo.model.path.spi.PojoPathsDefinition
    Implement PojoPathDefinitionProvider instead.
  • Deprecated Methods
    Method
    Description
    org.hibernate.search.mapper.pojo.bridge.binding.BindingContext.param(String)
    Use BindingContext.param(String, Class) instead.
    org.hibernate.search.mapper.pojo.bridge.binding.BindingContext.paramOptional(String)
    Use BindingContext.paramOptional(String, Class) instead.
    org.hibernate.search.mapper.pojo.mapping.definition.annotation.IndexedEmbedded.prefix()
    Use IndexedEmbedded.name() instead. Note that IndexedEmbedded.name() does not allow dots.
    org.hibernate.search.mapper.pojo.mapping.definition.programmatic.PropertyMappingIndexedEmbeddedStep.prefix(String)
    Pass a field name to PropertyMappingStep.indexedEmbedded(String) instead. Note that the name passed to that method does not allow dots.
    org.hibernate.search.mapper.pojo.mapping.spi.AbstractPojoMappingInitiator.annotatedTypeDiscoveryEnabled(boolean)
    Use AnnotationMappingConfigurationContext.discoverAnnotationsFromReferencedTypes(boolean) on the object returned by AbstractPojoMappingInitiator.annotationMapping() instead.
    org.hibernate.search.mapper.pojo.massindexing.MassIndexingEntityFailureContext.Builder.entityReference(Object)
    Use MassIndexingEntityFailureContext.Builder.failingEntityReference(EntityReference) instead.
    org.hibernate.search.mapper.pojo.massindexing.MassIndexingEntityFailureContext.entityReferences()
    Use MassIndexingEntityFailureContext.failingEntityReferences() instead.
    org.hibernate.search.mapper.pojo.model.additionalmetadata.building.spi.PojoAdditionalMetadataCollectorTypeNode.markAsEntity(String, PojoPathsDefinition)
    Use PojoAdditionalMetadataCollectorTypeNode.markAsEntity(String, PojoPathDefinitionProvider) instead.
    org.hibernate.search.mapper.pojo.model.spi.PojoBootstrapIntrospector.annotationValueReadHandleFactory()
    Use/implement PojoBootstrapIntrospector.annotationValueHandleFactory() instead.
    org.hibernate.search.mapper.pojo.schema.management.spi.PojoScopeSchemaManager.createIfMissing(FailureCollector)
    org.hibernate.search.mapper.pojo.schema.management.spi.PojoScopeSchemaManager.createOrUpdate(FailureCollector)
    org.hibernate.search.mapper.pojo.schema.management.spi.PojoScopeSchemaManager.createOrValidate(FailureCollector)
    org.hibernate.search.mapper.pojo.schema.management.spi.PojoScopeSchemaManager.dropAndCreate(FailureCollector)
    org.hibernate.search.mapper.pojo.schema.management.spi.PojoScopeSchemaManager.dropIfExisting(FailureCollector)
    org.hibernate.search.mapper.pojo.schema.management.spi.PojoScopeSchemaManager.validate(FailureCollector)
    org.hibernate.search.mapper.pojo.scope.spi.PojoScopeDelegate.massIndexer(PojoMassIndexingContext, DetachedBackendSessionContext)
    Use PojoScopeDelegate.massIndexer(PojoMassIndexingContext, Set) instead.
    org.hibernate.search.mapper.pojo.scope.spi.PojoScopeDelegate.workspace(DetachedBackendSessionContext)
    Use PojoScopeDelegate.workspace(String) instead.
    org.hibernate.search.mapper.pojo.search.definition.binding.ProjectionBindingContext.param(String)
    Use ProjectionBindingContext.param(String, Class) instead.
    org.hibernate.search.mapper.pojo.search.definition.binding.ProjectionBindingContext.paramOptional(String)
    Use ProjectionBindingContext.paramOptional(String, Class) instead.
    org.hibernate.search.mapper.pojo.work.spi.PojoIndexer.add(PojoRawTypeIdentifier<?>, Object, DocumentRoutesDescriptor, Object, DocumentCommitStrategy, DocumentRefreshStrategy)
    Use PojoIndexer.add(PojoRawTypeIdentifier, Object, DocumentRoutesDescriptor, Object, DocumentCommitStrategy, DocumentRefreshStrategy, OperationSubmitter) instead.
    org.hibernate.search.mapper.pojo.work.spi.PojoIndexer.addOrUpdate(PojoRawTypeIdentifier<?>, Object, DocumentRoutesDescriptor, Object, DocumentCommitStrategy, DocumentRefreshStrategy)
    Use PojoIndexer.addOrUpdate(PojoRawTypeIdentifier, Object, DocumentRoutesDescriptor, Object, DocumentCommitStrategy, DocumentRefreshStrategy, OperationSubmitter) instead.
    org.hibernate.search.mapper.pojo.work.spi.PojoIndexer.delete(PojoRawTypeIdentifier<?>, Object, DocumentRoutesDescriptor, Object, DocumentCommitStrategy, DocumentRefreshStrategy)
    Use PojoIndexer.delete(PojoRawTypeIdentifier, Object, DocumentRoutesDescriptor, DocumentCommitStrategy, DocumentRefreshStrategy, OperationSubmitter) instead.
    org.hibernate.search.mapper.pojo.work.spi.PojoIndexer.delete(PojoRawTypeIdentifier<?>, Object, DocumentRoutesDescriptor, DocumentCommitStrategy, DocumentRefreshStrategy)
    Use PojoIndexer.delete(PojoRawTypeIdentifier, Object, DocumentRoutesDescriptor, DocumentCommitStrategy, DocumentRefreshStrategy, OperationSubmitter) instead.
    org.hibernate.search.mapper.pojo.work.spi.PojoIndexingPlan.add(PojoRawTypeIdentifier<?>, Object, DocumentRoutesDescriptor, Object)
    Use typeIfIncludedOrNull(typeIdentifier) instead, then (if non-null) .add(...) on the result.
    org.hibernate.search.mapper.pojo.work.spi.PojoIndexingPlan.addOrUpdate(PojoRawTypeIdentifier<?>, Object, DocumentRoutesDescriptor, Object, boolean, boolean, BitSet)
    Use typeIfIncludedOrNull(typeIdentifier) instead, then (if non-null) .addOrUpdate(...) on the result.
    org.hibernate.search.mapper.pojo.work.spi.PojoIndexingPlan.addOrUpdateOrDelete(PojoRawTypeIdentifier<?>, Object, DocumentRoutesDescriptor, boolean, boolean, BitSet)
    Use typeIfIncludedOrNull(typeIdentifier) instead, then (if non-null) .addOrUpdateOrDelete(...) on the result.
    org.hibernate.search.mapper.pojo.work.spi.PojoIndexingPlan.delete(PojoRawTypeIdentifier<?>, Object, DocumentRoutesDescriptor, Object)
    Use typeIfIncludedOrNull(typeIdentifier) instead, then (if non-null) .delete(...) on the result.
    org.hibernate.search.mapper.pojo.work.spi.PojoIndexingPlan.updateAssociationInverseSide(PojoRawTypeIdentifier<?>, BitSet, Object[], Object[])
    Use typeIfIncludedOrNull(typeIdentifier) instead, then (if non-null) .updateAssociationInverseSide(...) on the result.
    org.hibernate.search.mapper.pojo.work.spi.PojoScopeWorkspace.flush()
    org.hibernate.search.mapper.pojo.work.spi.PojoScopeWorkspace.flush(OperationSubmitter)
    org.hibernate.search.mapper.pojo.work.spi.PojoScopeWorkspace.mergeSegments()
    org.hibernate.search.mapper.pojo.work.spi.PojoScopeWorkspace.mergeSegments(OperationSubmitter)
    org.hibernate.search.mapper.pojo.work.spi.PojoScopeWorkspace.purge(Set<String>)
    org.hibernate.search.mapper.pojo.work.spi.PojoScopeWorkspace.purge(Set<String>, OperationSubmitter)
    org.hibernate.search.mapper.pojo.work.spi.PojoScopeWorkspace.refresh()
    org.hibernate.search.mapper.pojo.work.spi.PojoScopeWorkspace.refresh(OperationSubmitter)
  • Deprecated Constructors
    Constructor
    Description
    org.hibernate.search.mapper.pojo.mapping.spi.AbstractPojoMappingImplementor(PojoMappingDelegate, PojoEntityReferenceFactoryDelegate)
    Use AbstractPojoMappingImplementor. This constructor is only present for backwards compatibility, for mappers that expose a custom entity reference type.
  • Deprecated Annotation Type Elements
    Annotation Type Element
    Description
    org.hibernate.search.mapper.pojo.mapping.definition.annotation.IndexedEmbedded.prefix()
    Use IndexedEmbedded.name() instead. Note that IndexedEmbedded.name() does not allow dots.

Copyright © 2006-2024 Red Hat, Inc. and others. Licensed under the GNU Lesser General Public License (LGPL), version 2.1 or later.