Uses of Class
org.forgerock.i18n.LocalizableMessageBuilder
-
Packages that use LocalizableMessageBuilder Package Description org.forgerock.i18n A i18n framework for embedding localizable messages in applications.org.forgerock.opendj.config.server.spi Contains a number of API declarations for use throughout the Directory Server.org.forgerock.opendj.ldap.schema Classes and interfaces for constructing and querying LDAP schemas.org.forgerock.opendj.server.core Classes implementing core server APIs.org.opends.server.api Contains a number of API declarations for use throughout the Directory Server.org.opends.server.core Contains various classes that comprise the core of the Directory Server codebase.org.opends.server.extensions Contains various implementations of Directory Server APIs that are not appropriate for other packages.org.opends.server.protocols.ldap Contains the implementation for the Directory Server connection handler that is responsible for interacting with clients using LDAPv3.org.opends.server.types Contains implementations for a number of Directory Server data types.org.opends.server.types.operation Contains a number of interfaces that are implemented by the various types of Directory Server operations. -
-
Uses of LocalizableMessageBuilder in org.forgerock.i18n
Methods in org.forgerock.i18n that return LocalizableMessageBuilder Modifier and Type Method Description LocalizableMessageBuilder
LocalizableMessageBuilder. append(char c)
Appends the provided character to this message builder.LocalizableMessageBuilder
LocalizableMessageBuilder. append(int value)
Appends the provided integer to this message builder.LocalizableMessageBuilder
LocalizableMessageBuilder. append(CharSequence cs)
Appends the provided character sequence to this message builder.LocalizableMessageBuilder
LocalizableMessageBuilder. append(CharSequence cs, int start, int end)
Appends a subsequence of the provided character sequence to this message builder.LocalizableMessageBuilder
LocalizableMessageBuilder. append(Object object)
Appends theString
representation of the providedObject
to this message builder.LocalizableMessageBuilder
LocalizableMessageBuilder. append(LocalizableMessage message)
Appends the provided message to this message builder.Constructors in org.forgerock.i18n with parameters of type LocalizableMessageBuilder Constructor Description LocalizableMessageBuilder(LocalizableMessageBuilder builder)
Creates a new message builder whose content is initially equal to the provided message builder. -
Uses of LocalizableMessageBuilder in org.forgerock.opendj.config.server.spi
Methods in org.forgerock.opendj.config.server.spi with parameters of type LocalizableMessageBuilder Modifier and Type Method Description boolean
ConfigAddListener. configAddIsAcceptable(Entry configEntry, LocalizableMessageBuilder unacceptableReason)
Indicates whether the configuration entry that will result from a proposed add is acceptable to this add listener.boolean
ConfigChangeListener. configChangeIsAcceptable(Entry configEntry, LocalizableMessageBuilder unacceptableReason)
Indicates whether the configuration entry that will result from a proposed modification is acceptable to this change listener.boolean
ConfigDeleteListener. configDeleteIsAcceptable(Entry configEntry, LocalizableMessageBuilder unacceptableReason)
Indicates whether it is acceptable to remove the provided configuration entry. -
Uses of LocalizableMessageBuilder in org.forgerock.opendj.ldap.schema
Methods in org.forgerock.opendj.ldap.schema with parameters of type LocalizableMessageBuilder Modifier and Type Method Description boolean
Syntax. valueIsAcceptable(ByteString value, LocalizableMessageBuilder invalidReason)
Indicates whether the provided value is acceptable for use in an attribute with this syntax.boolean
SyntaxImpl. valueIsAcceptable(Schema schema, ByteString value, LocalizableMessageBuilder invalidReason)
Indicates whether the provided value is acceptable for use in an attribute with this syntax. -
Uses of LocalizableMessageBuilder in org.forgerock.opendj.server.core
Methods in org.forgerock.opendj.server.core that return LocalizableMessageBuilder Modifier and Type Method Description LocalizableMessageBuilder
RequestContext. getMaskedErrorMessage()
Retrieves the real, masked error message for this operation. -
Uses of LocalizableMessageBuilder in org.opends.server.api
Methods in org.opends.server.api with parameters of type LocalizableMessageBuilder Modifier and Type Method Description abstract boolean
PasswordValidator. passwordIsAcceptable(ByteString newPassword, Set<ByteString> currentPasswords, Operation operation, Entry userEntry, LocalizableMessageBuilder invalidReason)
Indicates whether the provided password is acceptable for use by the specified user. -
Uses of LocalizableMessageBuilder in org.opends.server.core
Methods in org.opends.server.core with parameters of type LocalizableMessageBuilder Modifier and Type Method Description boolean
PasswordPolicy. passwordIsAcceptable(ByteString newPassword, Set<ByteString> currentPasswords, Operation operation, Entry userEntry, LocalizableMessageBuilder invalidReason, PasswordValidator<?> passwordInHistoryValidator)
Indicates whether the provided password appears to be acceptable according to the password validators, and adds aPasswordQualityAdviceResponseControl
to the operation's response if requested.boolean
PasswordPolicyState. passwordIsAcceptable(ByteString newPassword, Set<ByteString> currentPasswords, Operation operation, Entry userEntry, LocalizableMessageBuilder invalidReason)
Indicates whether the provided password appears to be acceptable according to the password validators, and adds aPasswordQualityAdviceResponseControl
to the operation's response if requested. -
Uses of LocalizableMessageBuilder in org.opends.server.extensions
Methods in org.opends.server.extensions with parameters of type LocalizableMessageBuilder Modifier and Type Method Description void
NotificationMessageNotificationMessageTemplateElement. generateValue(LocalizableMessageBuilder buffer, AccountStatusNotification notification)
abstract void
NotificationMessageTemplateElement. generateValue(LocalizableMessageBuilder buffer, AccountStatusNotification notification)
Generates a value for this template element using the information contained in the provided account status notification and appends it to the given buffer.void
NotificationTypeNotificationMessageTemplateElement. generateValue(LocalizableMessageBuilder buffer, AccountStatusNotification notification)
void
TextNotificationMessageTemplateElement. generateValue(LocalizableMessageBuilder buffer, AccountStatusNotification notification)
void
UserDNNotificationMessageTemplateElement. generateValue(LocalizableMessageBuilder buffer, AccountStatusNotification notification)
boolean
AttributeValuePasswordValidator. passwordIsAcceptable(ByteString newPassword, Set<ByteString> currentPasswords, Operation operation, Entry userEntry, LocalizableMessageBuilder invalidReason)
boolean
CharacterSetPasswordValidator. passwordIsAcceptable(ByteString newPassword, Set<ByteString> currentPasswords, Operation operation, Entry userEntry, LocalizableMessageBuilder invalidReason)
boolean
DictionaryPasswordValidator. passwordIsAcceptable(ByteString newPassword, Set<ByteString> currentPasswords, Operation operation, Entry userEntry, LocalizableMessageBuilder invalidReason)
boolean
LengthBasedPasswordValidator. passwordIsAcceptable(ByteString newPassword, Set<ByteString> currentPasswords, Operation operation, Entry userEntry, LocalizableMessageBuilder invalidReason)
boolean
RepeatedCharactersPasswordValidator. passwordIsAcceptable(ByteString newPassword, Set<ByteString> currentPasswords, Operation operation, Entry userEntry, LocalizableMessageBuilder invalidReason)
boolean
SimilarityBasedPasswordValidator. passwordIsAcceptable(ByteString newPassword, Set<ByteString> currentPasswords, Operation operation, Entry userEntry, LocalizableMessageBuilder invalidReason)
boolean
UniqueCharactersPasswordValidator. passwordIsAcceptable(ByteString newPassword, Set<ByteString> currentPasswords, Operation operation, Entry userEntry, LocalizableMessageBuilder invalidReason)
boolean
TLSCapableConnection. prepareTLS(LocalizableMessageBuilder unavailableReason)
Prepares this connection for using TLS and returns whether TLS protection is actually available for the underlying client connection. -
Uses of LocalizableMessageBuilder in org.opends.server.protocols.ldap
Methods in org.opends.server.protocols.ldap with parameters of type LocalizableMessageBuilder Modifier and Type Method Description boolean
LdapClientConnection. prepareTLS(LocalizableMessageBuilder unavailableReason)
-
Uses of LocalizableMessageBuilder in org.opends.server.types
Methods in org.opends.server.types that return LocalizableMessageBuilder Modifier and Type Method Description LocalizableMessageBuilder
Operation. getErrorMessage()
Retrieves the error message for this operation.Methods in org.opends.server.types with parameters of type LocalizableMessageBuilder Modifier and Type Method Description void
Operation. setErrorMessage(LocalizableMessageBuilder errorMessage)
Specifies the error message for this operation. -
Uses of LocalizableMessageBuilder in org.opends.server.types.operation
Methods in org.opends.server.types.operation that return LocalizableMessageBuilder Modifier and Type Method Description LocalizableMessageBuilder
InProgressOperation. getErrorMessage()
Retrieves the error message for this operation.LocalizableMessageBuilder
PostCommitOperation. getErrorMessage()
Retrieves the error message for this operation.LocalizableMessageBuilder
PostOperationOperation. getErrorMessage()
Retrieves the error message for this operation.LocalizableMessageBuilder
PostResponseOperation. getErrorMessage()
Retrieves the error message for this operation.LocalizableMessageBuilder
PostSynchronizationOperation. getErrorMessage()
Retrieves the error message for this operation.LocalizableMessageBuilder
PreOperationOperation. getErrorMessage()
Retrieves the error message for this operation.LocalizableMessageBuilder
PreParseOperation. getErrorMessage()
Retrieves the error message for this operation.Methods in org.opends.server.types.operation with parameters of type LocalizableMessageBuilder Modifier and Type Method Description void
InProgressOperation. setErrorMessage(LocalizableMessageBuilder errorMessage)
Specifies the error message for this operation.void
PostOperationOperation. setErrorMessage(LocalizableMessageBuilder errorMessage)
Specifies the error message for this operation.void
PreOperationOperation. setErrorMessage(LocalizableMessageBuilder errorMessage)
Specifies the error message for this operation.void
PreParseOperation. setErrorMessage(LocalizableMessageBuilder errorMessage)
Specifies the error message for this operation.
-