Uses of Class
org.hibernate.UnknownProfileException
-
Packages that use UnknownProfileException 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.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 UnknownProfileException in org.hibernate
Methods in org.hibernate that throw UnknownProfileException Modifier and Type Method Description void
Session. disableFetchProfile(String name)
Disable thefetch profile
with the given name in this session.void
Session. enableFetchProfile(String name)
Enable thefetch profile
with the given name in this session.boolean
Session. isFetchProfileEnabled(String name)
Is thefetch profile
with the given name enabled in this session? -
Uses of UnknownProfileException in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi that throw UnknownProfileException Modifier and Type Method Description void
LoadQueryInfluencers. disableFetchProfile(String name)
void
SessionDelegatorBaseImpl. disableFetchProfile(String name)
void
SessionLazyDelegator. disableFetchProfile(String name)
void
LoadQueryInfluencers. enableFetchProfile(String name)
void
SessionDelegatorBaseImpl. enableFetchProfile(String name)
void
SessionLazyDelegator. enableFetchProfile(String name)
boolean
LoadQueryInfluencers. isFetchProfileEnabled(String name)
boolean
SessionDelegatorBaseImpl. isFetchProfileEnabled(String name)
boolean
SessionLazyDelegator. isFetchProfileEnabled(String name)
-
Uses of UnknownProfileException in org.hibernate.internal
Methods in org.hibernate.internal that throw UnknownProfileException Modifier and Type Method Description void
SessionImpl. disableFetchProfile(String name)
void
SessionImpl. enableFetchProfile(String name)
boolean
SessionImpl. isFetchProfileEnabled(String name)
-