@LogMessage(level=ERROR)
@Message(value="SQL failure while integrating state into store",
id=8003)
voidsqlFailureIntegratingState(@Cause
SQLException e)
ioErrorUnmarshalling
@LogMessage(level=ERROR)
@Message(value="I/O error while unmarshalling from stream",
id=8009)
voidioErrorUnmarshalling(@Cause
IOException e)
@LogMessage(level=ERROR)
@Message(value="Error while creating table; used DDL statement: \'%s\'",
id=8011)
voiderrorCreatingTable(String sql,
@Cause
SQLException e)
connectionInJndiNotFound
@LogMessage(level=ERROR)
@Message(value="Could not find a connection in jndi under the name \'%s\'",
id=8015)
voidconnectionInJndiNotFound(String dataSourceName)
namingExceptionLookingUpConnection
@LogMessage(level=ERROR)
@Message(value="Could not lookup connection with datasource %s",
id=8016)
voidnamingExceptionLookingUpConnection(String dataSourceName,
@Cause
NamingException e)
failedClosingNamingCtx
@LogMessage(level=WARN)
@Message(value="Failed to close naming context.",
id=8017)
voidfailedClosingNamingCtx(@Cause
NamingException e)
@LogMessage(level=WARN)
@Message(value="Failure while closing the connection to the database",
id=8023)
voidfailureClosingConnection(@Cause
SQLException e)
sqlFailureStoringKey
@LogMessage(level=ERROR)
@Message(value="Error while storing string key to database; key: \'%s\'",
id=8024)
voidsqlFailureStoringKey(Object lockingKey,
@Cause
SQLException e)
sqlFailureRemovingKeys
@LogMessage(level=ERROR)
@Message(value="Error while removing string keys from database",
id=8025)
voidsqlFailureRemovingKeys(@Cause
SQLException e)
invalidKey2StringMapper
@LogMessage(level=ERROR)
@Message(value="In order for JdbcStringBasedStore to support %s, the Key2StringMapper needs to implement TwoWayKey2StringMapper. You should either make %s implement TwoWayKey2StringMapper or disable the sql. See [https://jira.jboss.org/browse/ISPN-579] for more details.",
id=8026)
voidinvalidKey2StringMapper(String where,
String className)
sqlFailureReadingKey
@LogMessage(level=ERROR)
@Message(value="SQL error while fetching stored entry with key: %s, lockingKey: %s",
id=8027)
voidsqlFailureReadingKey(Object key,
Object lockingKey,
@Cause
SQLException e)
tableManipulationAttributeNotSet
@Message(value="Attribute \'%2$s\' has not been set on \'%1$s\'",
id=8028)
CacheConfigurationExceptiontableManipulationAttributeNotSet(String groupName,
String name)
missingConnectionFactory
@Message(value="A ConnectionFactory has not been specified for this store",
id=8029)
CacheConfigurationExceptionmissingConnectionFactory()
@LogMessage(level=ERROR)
@Message(value="Error during rollback of JDBC transaction",
id=8032)
voidsqlFailureTxRollback(@Cause
SQLException e)
prepareTxFailure
@Message(value="Exception encountered when preparing JDBC store Tx",
id=8033)
PersistenceExceptionprepareTxFailure(@Cause
Throwable e)
twoWayKey2StringMapperIsMissing
@LogMessage(level=WARN)
@Message(value="Unable to notify the PurgeListener of expired cache entries as the configured key2StringMapper does not implement %s",
id=8036)
voidtwoWayKey2StringMapperIsMissing(String className)
sqlFailureWritingBatch
@Message(value="Error while writing entries in batch to the database:",
id=8037)
PersistenceExceptionsqlFailureWritingBatch(@Cause
Throwable e)
sqlFailureDeletingBatch
@Message(value="Error whilst removing keys in batch from the database. Keys: %s",
id=8038)
PersistenceExceptionsqlFailureDeletingBatch(Iterable<Object> keys,
@Cause
Exception e)
existingStoreNoSegmentation
@Message(value="The existing store was created without segmentation enabled",
id=8039)
CacheConfigurationExceptionexistingStoreNoSegmentation()
existingStoreSegmentMismatch
@Message(value="The existing store was created with %d segments configured, but the cache is configured with %d",
id=8040)
CacheConfigurationExceptionexistingStoreSegmentMismatch(int existing,
int cache)
@LogMessage(level=ERROR)
@Message(value="SQL failure while retrieving size",
id=8042)
voidsqlFailureSize(@Cause
SQLException e)
primaryKeyMultipleColumnWithoutSchema
@Message(value="Primary key has multiple columns but no key message schema defined, which is required when there is more than one key column",
id=8043)
CacheConfigurationExceptionprimaryKeyMultipleColumnWithoutSchema()
valueMultipleColumnWithoutSchema
@Message(value="Multiple non key columns but no value message schema defined, which is required when there is more than one value column",
id=8044)
CacheConfigurationExceptionvalueMultipleColumnWithoutSchema()
keyNotInSchema
@Message(value="Primary key %s was not found in the key schema %s",
id=8045)
CacheConfigurationExceptionkeyNotInSchema(String primaryKeyName,
String schemaName)
valueNotInSchema
@Message(value="Additional value columns %s found that were not part of the schema, make sure the columns returned match the value schema %s",
id=8046)
CacheConfigurationExceptionvalueNotInSchema(List<String> columnNames,
String schemaName)
@Message(value="Key cannot be embedded when the value schema %s is an enum",
id=8048)
CacheConfigurationExceptionkeyCannotEmbedWithEnum(String schemaName)
repeatedFieldsNotSupported
@Message(value="Repeated fields are not supported, found %s in schema %s",
id=8049)
CacheConfigurationExceptionrepeatedFieldsNotSupported(String fieldName,
String schemaName)
duplicateFieldInSchema
@Message(value="Duplicate name %s found for nested schema: %s",
id=8050)
CacheConfigurationExceptionduplicateFieldInSchema(String fieldName,
String schemaName)
requiredSchemaFieldNotPresent
@Message(value="Schema contained a field %s that is required but wasn\'t found in the query for schema %s",
id=8051)
CacheConfigurationExceptionrequiredSchemaFieldNotPresent(String fieldName,
String schemaName)
primaryKeyPresentButNotEmbedded
@Message(value="Primary key %s was found in the value schema %s but embedded key was not true",
id=8052)
CacheConfigurationExceptionprimaryKeyPresentButNotEmbedded(String fieldName,
String schemaName)
deleteAndSelectQueryMismatchArguments
@Message(value="Delete and select queries do not have matching arguments. Delete was %s and select was %s",
id=8053)
CacheConfigurationExceptiondeleteAndSelectQueryMismatchArguments(List<String> deleteParams,
List<String> selectParams)
deleteAndSelectQueryMismatchArguments
@Message(value="Named parameter %s in upsert statement [%s] is not available in columns from selectAll statement [%s]",
id=8054)
CacheConfigurationExceptiondeleteAndSelectQueryMismatchArguments(String paramName,
String upsertStatement,
String selectStatement)
selectAllCannotHaveParameters
@Message(value="No parameters are allowed for select all statement %s",
id=8055)
CacheConfigurationExceptionselectAllCannotHaveParameters(String selectAllStatement)
deleteAllCannotHaveParameters
@Message(value="No parameters are allowed for delete all statement %s",
id=8056)
CacheConfigurationExceptiondeleteAllCannotHaveParameters(String selectAllStatement)
sizeCannotHaveParameters
@Message(value="No parameters are allowed for sizer statement %s",
id=8057)
CacheConfigurationExceptionsizeCannotHaveParameters(String selectAllStatement)
keyColumnsNotReturnedFromSelectAll
@Message(value="Not all key columns %s were returned from select all statement %s",
id=8058)
CacheConfigurationExceptionkeyColumnsNotReturnedFromSelectAll(String keyColumns,
String selectAllStatement)
namedParamNotReturnedFromSelect
@Message(value="Select parameter %s is not returned from select all statement %s, select statement is %s",
id=8059)
CacheConfigurationExceptionnamedParamNotReturnedFromSelect(String paramName,
String selectAllStatement,
String selectStatement)
nonTerminatedNamedParamInSql
@Message(value="Non-terminated named parameter declaration at position %d in statement: %s",
id=8060)
CacheConfigurationExceptionnonTerminatedNamedParamInSql(int position,
String sqlStatement)
invalidCharacterInSql
@Message(value="Invalid character %s at position %d in statement: %s",
id=8061)
CacheConfigurationExceptioninvalidCharacterInSql(char character,
int position,
String sqlStatement)
unnamedParametersNotAllowed
@Message(value="Unnamed parameters are not allowed, found one at %d in statement %s",
id=8062)
CacheConfigurationExceptionunnamedParametersNotAllowed(int position,
String sqlStatement)
tableNotInCorrectFormat
@Message(value="Provided table name %s is not in form of (<SCHEMA>.)<TABLE-NAME> where SCHEMA is optional",
id=8063)
CacheConfigurationExceptiontableNotInCorrectFormat(String tableName)
noPrimaryKeysFoundForTable
@Message(value="No primary keys found for table %s, check case sensitivity",
id=8064)
CacheConfigurationExceptionnoPrimaryKeysFoundForTable(String tableName)
noValueColumnForTable
@Message(value="No column found that wasn\'t a primary key for table: %s",
id=8065)
CacheConfigurationExceptionnoValueColumnForTable(String tableName)
unableToDetectDialect
@Message(value="Unable to detect database dialect from JDBC driver name or connection metadata. Please provide this manually using the \'dialect\' property in your configuration. Supported database dialect strings are %s",
id=8066)
CacheConfigurationExceptionunableToDetectDialect(String supportedDialects)
requiredStatementsForQueryStoreLoader
@Message(value="The size, select and select all attributes must be set for a query store",
id=8067)
CacheConfigurationExceptionrequiredStatementsForQueryStoreLoader()
requiredStatementsForQueryStoreWriter
@Message(value="The delete, delete all and upsert attributes must be set for a query store that allows writes",
id=8068)
CacheConfigurationExceptionrequiredStatementsForQueryStoreWriter()
keyColumnsRequired
@Message(value="Key columns are required for QueryStore",
id=8069)
CacheConfigurationExceptionkeyColumnsRequired()
messageNameRequiredIfEmbeddedKey
@Message(value="Message name must not be null if embedded key is true",
id=8070)
CacheConfigurationExceptionmessageNameRequiredIfEmbeddedKey()
@LogMessage(level=WARN)
@Message(value="There was no JDBC metadata present in table %s, unable to confirm if segments are properly configured! Segments are assumed to be properly configured.",
id=8072)
voidsqlMetadataNotPresent(String tableName)