Uses of Interface
com.blazebit.persistence.view.spi.EntityViewConfiguration
Packages that use EntityViewConfiguration
Package
Description
Entity-View extension for the Blaze-Persistence API.
SPI for implementers of the Blaze-Persistence Entity-View extension.
-
Uses of EntityViewConfiguration in com.blazebit.persistence.view
Methods in com.blazebit.persistence.view that return EntityViewConfigurationModifier and TypeMethodDescriptionstatic EntityViewConfigurationEntityViews.createDefaultConfiguration()Uses the default EntityViewConfigurationProvider and invokesEntityViewConfigurationProvider.createConfiguration(). -
Uses of EntityViewConfiguration in com.blazebit.persistence.view.spi
Methods in com.blazebit.persistence.view.spi that return EntityViewConfigurationModifier and TypeMethodDescriptionEntityViewConfiguration.addEntityView(Class<?> clazz) Adds the given class to the set of known entity views.EntityViewConfiguration.addEntityViewListener(Class<?> entityViewListenerClass) Registers the given entity view listener class.EntityViewConfiguration.addEntityViewListener(Class<?> entityViewClass, Class<?> entityViewListenerClass) Registers the given entity view listener class for the given entity view class.EntityViewConfiguration.addEntityViewListener(Class<?> entityViewClass, Class<?> entityClass, Class<?> entityViewListenerClass) Registers the given entity view listener class for the given entity view and entity class.EntityViewConfiguration.addOptionalParameters(Map<String, Object> optionalParameters) Add the given optional parameters to the optional parameters of the configuration.EntityViewConfiguration.addProperties(Properties extraProperties) Add the given properties to the properties of the configuration.EntityViewConfigurationProvider.createConfiguration()Creates a new EntityViewConfiguration and returns it.EntityViewConfiguration.mergeProperties(Properties properties) Adds the given properties to the properties of the configuration, without overriding existing values.EntityViewConfiguration.registerBasicUserType(Class<X> clazz, BasicUserType<X> userType) Registers the given user type for the given class.<X,Y> EntityViewConfiguration EntityViewConfiguration.registerTypeConverter(Class<X> underlyingType, Class<Y> viewModelType, TypeConverter<X, Y> converter) Registers the given converter for the given types.EntityViewConfiguration.setOptionalParameter(String name, Object value) Set the optional parameter with the given name to the given value.EntityViewConfiguration.setOptionalParameters(Map<String, Object> optionalParameters) Replace the optional parameters of the configuration with the given optional parameters.EntityViewConfiguration.setProperties(Properties properties) Replace the properties of the configuration with the given properties.EntityViewConfiguration.setProperty(String propertyName, String value) Set a property value by name.EntityViewConfiguration.setTransactionSupport(TransactionSupport transactionSupport) Sets the given transaction support.EntityViewConfiguration.setTypeTestValue(Class<T> type, T value) Sets the given value as type test value for the given type.