@MessageBundle(projectCode="PLIDM")
public interface IDMMessages
MessageBundle
interface for all exceptions thrown by the IDM.
Methods names follow the rule: [Context]+[Short Message Description]. For example, the name
storeConfigLockedFeatureSet
. In this case the [Context] is storeConfig, meaning that this message is
used by the identity store configuration. The LockedFeatureSet is a short description for the message itself.
General messages may not have a [Context].
When creating new messages, you may or not identify messages with an identifier. The identifier is only used for messages with an important meaning for users, from which they can easily identify the context of an exception or failure.
Messages with no identifier usually means they are used as root exceptions, with more details about an exception or failure.
Modifier and Type | Field and Description |
---|---|
static IDMMessages |
MESSAGES |
static final IDMMessages MESSAGES
@Message(id=1, value="Error creating instance for type [%s].") IdentityManagementException instantiationError(Class<?> type, @Cause Throwable t)
@Message(id=2, value="Null argument: [%s].") IdentityManagementException nullArgument(String description)
@Message(id=3, value="Error unmarshalling object.") IdentityManagementException unmarshallingError(@Cause Throwable t)
@Message(id=4, value="Error marshalling object.") IdentityManagementException marshallingError(@Cause Throwable t)
@Message(id=5, value="Unexpected type [%s].") IdentityManagementException unexpectedType(Class<?> unexpectedType)
@Message(id=200, value="Credential validation failed [%s].") IdentityManagementException credentialValidationFailed(Credentials credentials, @Cause Throwable t)
@Message(id=201, value="Credential update failed for account [%s] and type [%s].") IdentityManagementException credentialUpdateFailed(Account account, Object credential, @Cause Throwable t)
@Message(id=202, value="No IdentityStore found for credential class [%s]") IdentityManagementException credentialNoStoreForCredentials(Class<?> credentialClass)
@Message(id=203, value="Credentials class [%s] not supported by this handler [%s].") IdentityManagementException credentialUnsupportedType(Class<?> type, CredentialHandler handler)
@Message(id=204, value="Credentials could not be retrieved for account [%s] and storage [%s].") <T extends CredentialStorage> IdentityManagementException credentialRetrievalFailed(Account account, Class<T> storageClass, @Cause Throwable t)
@Message(id=205, value="The IdentityType returned is not an Account: [%s]") IdentityManagementException credentialInvalidAccountType(Class<? extends IdentityType> aClass)
@Message(id=206, value="Multiple Account objects found with same login name [%s] for account type [%s].") IdentityManagementException credentialMultipleAccountsFoundForType(String loginName, Class<? extends Account> accountType)
@Message(id=207, value="No Account type provided. You must provide at least one Account type in order to support credential management.") IdentityManagementException credentialNoAccountTypeProvided()
@Message(value="Invalid Realm or it was not provided.") IdentityManagementException credentialDigestInvalidRealm()
@Message(value="Invalid Password or it was not provided.") IdentityManagementException credentialInvalidPassword()
@Message(value="Could not encode password.") IdentityManagementException credentialCouldNotEncodePassword(@Cause UnsupportedEncodingException e)
@Message(value="No suitable CredentialHandler available for validating Credentials of type [%s].") IdentityManagementException credentialHandlerNotFoundForCredentialType(Class<?> class1)
@Message(value="No such algorithm [%s] for encoding passwords. Using PasswordEncoder [%s].") IdentityManagementException credentialInvalidEncodingAlgorithm(String algorithm, PasswordEncoder encoder, @Cause Throwable t)
@Message(id=700, value="Could not create configuration.") SecurityConfigurationException configCouldNotCreateConfiguration(@Cause Exception sce)
@Message(id=701, value="Invalid configuration [%s].") SecurityConfigurationException configInvalidConfiguration(String name, @Cause Throwable t)
@Message(id=702, value="You must provide at least one configuration.") SecurityConfigurationException configNoConfigurationProvided()
@Message(id=703, value="You have provided more than one configuration. Use the buildAll method instead.") SecurityConfigurationException configBuildMultipleConfigurationExists()
@Message(id=704, value="At least one IdentityConfiguration must be provided") SecurityConfigurationException configNoIdentityConfigurationProvided()
@Message(id=705, value="You must configure at least one identity store.") SecurityConfigurationException configStoreNoIdentityStoreConfigProvided()
@Message(id=706, value="Duplicated supported types [%s] found for identity store configuration. Check your identity store configuration for duplicated types, considering their hierarchy.") SecurityConfigurationException configStoreDuplicatedSupportedType(Class<?> supportedType)
@Message(id=707, value="Multiple configuration with credential support.") SecurityConfigurationException configMultipleConfigurationsFoundWithCredentialSupport()
@Message(value="Error initializing JpaIdentityStore - no entity classes configured.") SecurityConfigurationException configJpaStoreNoEntityClassesProvided()
@Message(value="Entity [%s] must have a field annotated with %s.") SecurityConfigurationException configJpaStoreRequiredMappingAnnotation(Class<?> entityType, Class<? extends Annotation> annotation)
@Message(value="Mapped attribute [%s.%s] does not map to any field for type [%s].") SecurityConfigurationException configJpaStoreMappedPropertyNotFound(Class<?> entityType, String propertyName, Class<?> type)
@Message(value="Unknown IdentityStore class for configuration [%s].") SecurityConfigurationException configUnknownStoreForConfiguration(IdentityStoreConfiguration storeConfiguration)
@Message(value="Error while creating IdentityStore [%s] instance for configuration [%s].") SecurityConfigurationException configCouldNotCreateStore(Class<? extends IdentityStore> storeClass, IdentityStoreConfiguration storeConfiguration, @Cause Exception e)
@Message(value="Only a single identity store config can support partitions. Found [%s] and [%s].") SecurityConfigurationException configStoreMultiplePartitionConfigExists(IdentityStoreConfiguration config1, IdentityStoreConfiguration config2)
@Message(value="Multiple configuration with the same name [%s].") SecurityConfigurationException configMultipleConfigurationsFoundWithSameName(String name)
@Message(value="Could not grant permission to [%s] for resource [%s], operation [%s].") IdentityManagementException permissionGrantFailed(IdentityType assignee, Object resource, String operation, @Cause Throwable t)
@Message(value="Could not grant Permissions [%s].") IdentityManagementException permissionsGrantFailed(String permissions, @Cause Throwable t)
@Message(value="Could not revoke permission granted to [%s] for resource [%s], operation [%s].") IdentityManagementException permissionRevokeFailed(IdentityType assignee, Object resource, String operation, @Cause Throwable t)
@Message(value="Could not revoke Permissions [%s].") IdentityManagementException permissionsRevokeFailed(String permissions, @Cause Throwable t)
@Message(value="Failed to revoke all permissions for resource [%s].") IdentityManagementException permissionRevokeAllFailed(Object resource, @Cause Throwable t)
Copyright © 2014. All rights reserved.