org.objectweb.speedo.api
Interface SpeedoProperties

All Known Implementing Classes:
OneTableRdbJormIMappingBuilder

public interface SpeedoProperties

Defines the Speedo options which can be passed as properties to the PersistenceManagerFactory


Field Summary
static java.lang.String CACHE_SIZE
          Is the property to pass to the PersistenceManagerFactory to assign the cache size.
static java.lang.String COMPILED_QUERY_POOL_MAX
          Is the property to pass to the PersistenceManagerFactory to assign the minimum size of compiled query pool.
static java.lang.String COMPILED_QUERY_POOL_MIN
          Is the property to pass to the PersistenceManagerFactory to assign the maximum size of compiled query pool.
static java.lang.String FIELD_CONVERTER
          is a string to used in an extension tag in a.jdo file to specify the name of the class permiting the conversion of a field between the memory and the data support.
static java.lang.String JOIN_TABLE
          is a string to used in an extension tag in a.jdo file to specify the name of the join table in a multivalued reference (Collection, Map, Array, Set, List).
static java.lang.String MANAGED
          Is the property to pass to the PersistenceManagerFactory to indicate if the transactionnal environnement is managed.
static java.lang.String NO_LIMIT
          Is the property value to pass to the PersistenceManagerFactory to indicate that the size is unlimited.
static java.lang.String PM_POOL_MAX
          Is the property to pass to the PersistenceManagerFactory to assign the minimum size of PersistenceManager pool.
static java.lang.String PM_POOL_MIN
          Is the property to pass to the PersistenceManagerFactory to assign the maximum size of PersistenceManager pool.
static java.lang.String QUERY_POOL_MAX
          Is the property to pass to the PersistenceManagerFactory to assign the minimum size of Query pool.
static java.lang.String QUERY_POOL_MIN
          Is the property to pass to the PersistenceManagerFactory to assign the maximum size of Query pool.
static java.lang.String REVERSE_FIELD
          is a string to used in an extension tag in a.jdo file to specify the name of the reverse field.
static java.lang.String SOURCE_FK
          is a string to used in an extension tag in a.jdo file to specify the foreign keys referencing the current persistent object.
static java.lang.String SQL_NAME
          is a string to used in an extension tag in a.jdo file to specify the sql column for a primitive field (not a reference).
static java.lang.String TARGET_FK
          is a string to used in an extension tag in a.jdo file to specify the foreign keys referencing the referenced persistent object.
static java.lang.String VENDOR_NAME
           
 

Field Detail

NO_LIMIT

public static final java.lang.String NO_LIMIT
Is the property value to pass to the PersistenceManagerFactory to indicate that the size is unlimited.

CACHE_SIZE

public static final java.lang.String CACHE_SIZE
Is the property to pass to the PersistenceManagerFactory to assign the cache size.

MANAGED

public static final java.lang.String MANAGED
Is the property to pass to the PersistenceManagerFactory to indicate if the transactionnal environnement is managed.

PM_POOL_MIN

public static final java.lang.String PM_POOL_MIN
Is the property to pass to the PersistenceManagerFactory to assign the maximum size of PersistenceManager pool.

PM_POOL_MAX

public static final java.lang.String PM_POOL_MAX
Is the property to pass to the PersistenceManagerFactory to assign the minimum size of PersistenceManager pool.

QUERY_POOL_MIN

public static final java.lang.String QUERY_POOL_MIN
Is the property to pass to the PersistenceManagerFactory to assign the maximum size of Query pool.

QUERY_POOL_MAX

public static final java.lang.String QUERY_POOL_MAX
Is the property to pass to the PersistenceManagerFactory to assign the minimum size of Query pool.

COMPILED_QUERY_POOL_MIN

public static final java.lang.String COMPILED_QUERY_POOL_MIN
Is the property to pass to the PersistenceManagerFactory to assign the maximum size of compiled query pool.

COMPILED_QUERY_POOL_MAX

public static final java.lang.String COMPILED_QUERY_POOL_MAX
Is the property to pass to the PersistenceManagerFactory to assign the minimum size of compiled query pool.

VENDOR_NAME

public static final java.lang.String VENDOR_NAME

SQL_NAME

public static final java.lang.String SQL_NAME
is a string to used in an extension tag in a.jdo file to specify the sql column for a primitive field (not a reference).

SOURCE_FK

public static final java.lang.String SOURCE_FK
is a string to used in an extension tag in a.jdo file to specify the foreign keys referencing the current persistent object.

TARGET_FK

public static final java.lang.String TARGET_FK
is a string to used in an extension tag in a.jdo file to specify the foreign keys referencing the referenced persistent object.

REVERSE_FIELD

public static final java.lang.String REVERSE_FIELD
is a string to used in an extension tag in a.jdo file to specify the name of the reverse field.

JOIN_TABLE

public static final java.lang.String JOIN_TABLE
is a string to used in an extension tag in a.jdo file to specify the name of the join table in a multivalued reference (Collection, Map, Array, Set, List).

FIELD_CONVERTER

public static final java.lang.String FIELD_CONVERTER
is a string to used in an extension tag in a.jdo file to specify the name of the class permiting the conversion of a field between the memory and the data support.