Uses of Class
org.eclipse.persistence.descriptors.partitioning.PartitioningPolicy
-
-
Uses of PartitioningPolicy in org.eclipse.persistence.annotations
Methods in org.eclipse.persistence.annotations that return types with arguments of type PartitioningPolicy Modifier and Type Method Description Class<? extends PartitioningPolicy>partitioningClass()(Required) Full package.class name of a subclass of PartitioningPolicy. -
Uses of PartitioningPolicy in org.eclipse.persistence.descriptors
Fields in org.eclipse.persistence.descriptors declared as PartitioningPolicy Modifier and Type Field Description protected PartitioningPolicyClassDescriptor. partitioningPolicyMethods in org.eclipse.persistence.descriptors that return PartitioningPolicy Modifier and Type Method Description PartitioningPolicyClassDescriptor. getPartitioningPolicy()PUBLIC: Return the descriptor's partitioning policy.Methods in org.eclipse.persistence.descriptors with parameters of type PartitioningPolicy Modifier and Type Method Description voidClassDescriptor. setPartitioningPolicy(PartitioningPolicy partitioningPolicy)PUBLIC: Set the descriptor's partitioning policy. -
Uses of PartitioningPolicy in org.eclipse.persistence.descriptors.partitioning
Subclasses of PartitioningPolicy in org.eclipse.persistence.descriptors.partitioning Modifier and Type Class Description classCustomPartitioningPolicyPUBLIC: Defines a user defined partitioning policy.classFieldPartitioningPolicyPUBLIC: FieldPartitioningPolicy partitions access to a database cluster by a field value from the object, such as the object's id, location, or tenant.classHashPartitioningPolicyPUBLIC: HashPartitioningPolicy partitions access to a database cluster by the hash of a field value from the object, such as the object's location, or tenant.classPinnedPartitioningPolicyPUBLIC: PinnedPartitionPolicy pins requests to a single connection pool.classRangePartitioningPolicyPUBLIC: RangePartitioningPolicy partitions access to a database cluster by a field value from the object, such as the object's id, location, or tenant.classReplicationPartitioningPolicyPUBLIC: ReplicationPartitioningPolicy sends requests to a set of connection pools.classRoundRobinPartitioningPolicyPUBLIC: RoundRobinPartitioningPolicy sends requests in a round robin fashion to the set of connection pools.classUnionPartitioningPolicyPUBLIC: UnionPartitionPolicy sends queries to all connection pools and unions the results.classValuePartitioningPolicyPUBLIC: ValuePartitioningPolicy partitions access to a database cluster by a field value from the object, such as the object's location, or tenant.Fields in org.eclipse.persistence.descriptors.partitioning declared as PartitioningPolicy Modifier and Type Field Description protected PartitioningPolicyCustomPartitioningPolicy. policyMethods in org.eclipse.persistence.descriptors.partitioning that return PartitioningPolicy Modifier and Type Method Description PartitioningPolicyCustomPartitioningPolicy. getPolicy()Methods in org.eclipse.persistence.descriptors.partitioning with parameters of type PartitioningPolicy Modifier and Type Method Description voidCustomPartitioningPolicy. setPolicy(PartitioningPolicy policy) -
Uses of PartitioningPolicy in org.eclipse.persistence.internal.sessions
Fields in org.eclipse.persistence.internal.sessions declared as PartitioningPolicy Modifier and Type Field Description protected PartitioningPolicyAbstractSession. partitioningPolicyAllow queries to be targeted at specific connection pools.Methods in org.eclipse.persistence.internal.sessions that return PartitioningPolicy Modifier and Type Method Description PartitioningPolicyAbstractSession. getPartitioningPolicy()PUBLIC: Return the session's partitioning policy.Methods in org.eclipse.persistence.internal.sessions with parameters of type PartitioningPolicy Modifier and Type Method Description voidAbstractSession. setPartitioningPolicy(PartitioningPolicy partitioningPolicy)PUBLIC: Set the session's partitioning policy. -
Uses of PartitioningPolicy in org.eclipse.persistence.mappings
Fields in org.eclipse.persistence.mappings declared as PartitioningPolicy Modifier and Type Field Description protected PartitioningPolicyForeignReferenceMapping. partitioningPolicyAllow the mapping's queries to be targeted at specific connection pools.Methods in org.eclipse.persistence.mappings that return PartitioningPolicy Modifier and Type Method Description PartitioningPolicyForeignReferenceMapping. getPartitioningPolicy()PUBLIC: Return the mapping's partitioning policy.Methods in org.eclipse.persistence.mappings with parameters of type PartitioningPolicy Modifier and Type Method Description voidForeignReferenceMapping. setPartitioningPolicy(PartitioningPolicy partitioningPolicy)PUBLIC: Set the mapping's partitioning policy. -
Uses of PartitioningPolicy in org.eclipse.persistence.queries
Fields in org.eclipse.persistence.queries declared as PartitioningPolicy Modifier and Type Field Description protected PartitioningPolicyDatabaseQuery. partitioningPolicyAllow queries to be targeted at specific connection pools.Methods in org.eclipse.persistence.queries that return PartitioningPolicy Modifier and Type Method Description PartitioningPolicyDatabaseQuery. getPartitioningPolicy()PUBLIC: Return the query's partitioning policy.Methods in org.eclipse.persistence.queries with parameters of type PartitioningPolicy Modifier and Type Method Description voidDatabaseQuery. setPartitioningPolicy(PartitioningPolicy partitioningPolicy)PUBLIC: Set the query's partitioning policy. -
Uses of PartitioningPolicy in org.eclipse.persistence.sessions
Fields in org.eclipse.persistence.sessions with type parameters of type PartitioningPolicy Modifier and Type Field Description protected Map<String,PartitioningPolicy>Project. partitioningPoliciesMap of named partitioning policies, keyed by their name.Methods in org.eclipse.persistence.sessions that return PartitioningPolicy Modifier and Type Method Description PartitioningPolicyProject. getPartitioningPolicy(String name)PUBLIC: Return the partitioning policies for the name.PartitioningPolicySession. getPartitioningPolicy()PUBLIC: Return the session's partitioning policy.Methods in org.eclipse.persistence.sessions that return types with arguments of type PartitioningPolicy Modifier and Type Method Description Map<String,PartitioningPolicy>Project. getPartitioningPolicies()PUBLIC: Return the map of partitioning policies, keyed by name.Methods in org.eclipse.persistence.sessions with parameters of type PartitioningPolicy Modifier and Type Method Description voidProject. addPartitioningPolicy(PartitioningPolicy partitioningPolicy)PUBLIC: Set the map of partitioning policies, keyed by name.voidSession. setPartitioningPolicy(PartitioningPolicy partitioningPolicy)PUBLIC: Set the session's partitioning policy.Method parameters in org.eclipse.persistence.sessions with type arguments of type PartitioningPolicy Modifier and Type Method Description voidProject. setPartitioningPolicies(Map<String,PartitioningPolicy> partitioningPolicies)PUBLIC: Set the map of partitioning policies, keyed by name.
-