Class CoreModule
java.lang.Object
org.apache.cayenne.configuration.runtime.CoreModule
- All Implemented Interfaces:
Module
A DI module containing all Cayenne runtime configuration.
- Since:
- 3.1 introduced, 5.0 renamed from ServerModule
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidstatic ListBuilder<DbAdapterDetector> contributeAdapterDetectors(Binder binder) Deprecated, for removal: This API element is subject to removal in a future version.static ListBuilder<ExtendedType> contributeDefaultTypes(Binder binder) Deprecated, for removal: This API element is subject to removal in a future version.in favor ofextend(Binder)APIstatic ListBuilder<Object> contributeDomainListeners(Binder binder) Deprecated, for removal: This API element is subject to removal in a future version.in favor ofextend(Binder)APIstatic ListBuilder<DataChannelQueryFilter> contributeDomainQueryFilters(Binder binder) Deprecated, for removal: This API element is subject to removal in a future version.in favor ofextend(Binder)APIstatic ListBuilder<DataChannelSyncFilter> contributeDomainSyncFilters(Binder binder) Deprecated, for removal: This API element is subject to removal in a future version.in favor ofextend(Binder)APIstatic ListBuilder<String> contributeProjectLocations(Binder binder) Deprecated, for removal: This API element is subject to removal in a future version.in favor ofextend(Binder)APIstatic MapBuilder<String> contributeProperties(Binder binder) Deprecated, for removal: This API element is subject to removal in a future version.in favor ofextend(Binder)APIstatic ListBuilder<ExtendedTypeFactory> contributeTypeFactories(Binder binder) Deprecated, for removal: This API element is subject to removal in a future version.in favor ofextend(Binder)APIstatic ListBuilder<ExtendedType> contributeUserTypes(Binder binder) Deprecated, for removal: This API element is subject to removal in a future version.in favor ofextend(Binder)APIstatic ListBuilder<ValueObjectType> contributeValueObjectTypes(Binder binder) Deprecated, for removal: This API element is subject to removal in a future version.in favor ofextend(Binder)APIstatic CoreModuleExtenderReturns an extender object that allows the app to customize the CoreModule services.static voidsetSnapshotCacheSize(Binder binder, int size) Deprecated, for removal: This API element is subject to removal in a future version.in favor ofextend(Binder)APIstatic voiduseExternalTransactions(Binder binder, boolean useExternal) Deprecated, for removal: This API element is subject to removal in a future version.in favor ofextend(Binder)API
-
Constructor Details
-
CoreModule
public CoreModule()Creates a newCoreModule.- Since:
- 4.0
-
-
Method Details
-
extend
Returns an extender object that allows the app to customize the CoreModule services.- Since:
- 5.0
-
useExternalTransactions
@Deprecated(since="5.0", forRemoval=true) public static void useExternalTransactions(Binder binder, boolean useExternal) Deprecated, for removal: This API element is subject to removal in a future version.in favor ofextend(Binder)APISets transaction management to either external or internal transactions. Default is internally-managed transactions.- Parameters:
binder- DI binder passed to the module during injector startup.useExternal- whether external (true) or internal (false) transaction management should be used.- Since:
- 4.0
-
setSnapshotCacheSize
@Deprecated(since="5.0", forRemoval=true) public static void setSnapshotCacheSize(Binder binder, int size) Deprecated, for removal: This API element is subject to removal in a future version.in favor ofextend(Binder)APISets max size of snapshot cache, in pre 4.0 version this was set in the Modeler.- Parameters:
binder- DI binder passed to the module during injector startup.size- max size of snapshot cache- Since:
- 4.0
-
contributeProjectLocations
@Deprecated(since="5.0", forRemoval=true) public static ListBuilder<String> contributeProjectLocations(Binder binder) Deprecated, for removal: This API element is subject to removal in a future version.in favor ofextend(Binder)APIProvides access to a DI collection builder for String locations that allows downstream modules to "contribute" their own Cayenne project locations.- Parameters:
binder- DI binder passed to the module during injector startup.- Returns:
- ListBuilder for String locations.
-
contributeDomainQueryFilters
@Deprecated(since="5.0", forRemoval=true) public static ListBuilder<DataChannelQueryFilter> contributeDomainQueryFilters(Binder binder) Deprecated, for removal: This API element is subject to removal in a future version.in favor ofextend(Binder)APIProvides access to a DI collection builder forDataChannelQueryFilter's that allows downstream modules to "contribute" their own DataDomain query filters- Parameters:
binder- DI binder passed to the module during injector startup.- Returns:
- ListBuilder for DataChannelQueryFilter.
- Since:
- 4.1
-
contributeDomainSyncFilters
@Deprecated(since="5.0", forRemoval=true) public static ListBuilder<DataChannelSyncFilter> contributeDomainSyncFilters(Binder binder) Deprecated, for removal: This API element is subject to removal in a future version.in favor ofextend(Binder)APIProvides access to a DI collection builder forDataChannelSyncFilter's that allows downstream modules to "contribute" their own DataDomain sync filters- Parameters:
binder- DI binder passed to the module during injector startup.- Returns:
- ListBuilder for DataChannelSyncFilter.
- Since:
- 4.1
-
contributeDomainListeners
@Deprecated(since="5.0", forRemoval=true) public static ListBuilder<Object> contributeDomainListeners(Binder binder) Deprecated, for removal: This API element is subject to removal in a future version.in favor ofextend(Binder)APIProvides access to a DI collection builder for lifecycle events listeners.- Parameters:
binder- DI binder passed to the module during injector startup.- Returns:
- ListBuilder for listener Objects.
- Since:
- 4.0
-
contributeAdapterDetectors
@Deprecated(since="5.0", forRemoval=true) public static ListBuilder<DbAdapterDetector> contributeAdapterDetectors(Binder binder) Deprecated, for removal: This API element is subject to removal in a future version.in favor ofextend(Binder)APIProvides access to a DI collection builder forDbAdapterDetector's that allows downstream modules to "contribute" their own adapter detectors.- Parameters:
binder- DI binder passed to the module during injector startup.- Returns:
- ListBuilder for DbAdapterDetectors.
- Since:
- 4.0
-
contributeProperties
@Deprecated(since="5.0", forRemoval=true) public static MapBuilder<String> contributeProperties(Binder binder) Deprecated, for removal: This API element is subject to removal in a future version.in favor ofextend(Binder)APIProvides access to a DI map builder for runtime properties that allows downstream modules to "contribute" their own properties.- Parameters:
binder- DI binder passed to the module during injector startup.- Returns:
- MapBuilder for properties.
- Since:
- 4.0
-
contributeTypeFactories
@Deprecated(since="5.0", forRemoval=true) public static ListBuilder<ExtendedTypeFactory> contributeTypeFactories(Binder binder) Deprecated, for removal: This API element is subject to removal in a future version.in favor ofextend(Binder)APIProvides access to a DI collection builder forExtendedTypeFactory's that allows downstream modules to "contribute" their own factories.- Parameters:
binder- DI binder passed to the module during injector startup.- Returns:
- ListBuilder for ExtendedTypes.
- Since:
- 4.0
-
contributeDefaultTypes
@Deprecated(since="5.0", forRemoval=true) public static ListBuilder<ExtendedType> contributeDefaultTypes(Binder binder) Deprecated, for removal: This API element is subject to removal in a future version.in favor ofextend(Binder)APIProvides access to a DI collection builder for default adapter-agnosticExtendedType's that allows downstream modules to "contribute" their own types. "Default" types are loaded before adapter-provided or "user" types, so they may be overridden by those.- Parameters:
binder- DI binder passed to the module during injector startup.- Returns:
- ListBuilder for ExtendedTypes.
- Since:
- 4.0
-
contributeUserTypes
@Deprecated(since="5.0", forRemoval=true) public static ListBuilder<ExtendedType> contributeUserTypes(Binder binder) Deprecated, for removal: This API element is subject to removal in a future version.in favor ofextend(Binder)APIProvides access to a DI collection builder forExtendedType's that allows downstream modules to "contribute" their own types. Unlike "default" types, "user" types are loaded after the adapter-provided types and can override those.- Parameters:
binder- DI binder passed to the module during injector startup.- Returns:
- ListBuilder for ExtendedTypes.
- Since:
- 4.0
-
contributeValueObjectTypes
@Deprecated(since="5.0", forRemoval=true) public static ListBuilder<ValueObjectType> contributeValueObjectTypes(Binder binder) Deprecated, for removal: This API element is subject to removal in a future version.in favor ofextend(Binder)API- Parameters:
binder- DI binder passed to module during injector startup- Returns:
- ListBuilder for user-contributed ValueObjectTypes
- Since:
- 4.0
-
configure
-
extend(Binder)API