Java Code Examples for org.jboss.logging.annotations.Message#NONE

The following examples show how to use org.jboss.logging.annotations.Message#NONE . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ElytronSubsystemMessages.java    From wildfly-core with GNU Lesser General Public License v2.1 4 votes vote down vote up
@Message(id = Message.NONE, value = "Update dependent resources as alias '%s' does not exist anymore")
String updateDependantServices(String alias);
 
Example 2
Source File: JmxLogger.java    From wildfly-core with GNU Lesser General Public License v2.1 4 votes vote down vote up
@Message(id = Message.NONE, value = "An entry")
String compositeEntryTypeDescription();
 
Example 3
Source File: JmxLogger.java    From wildfly-core with GNU Lesser General Public License v2.1 4 votes vote down vote up
@Message(id = Message.NONE, value="The property value")
String propertyValue();
 
Example 4
Source File: JmxLogger.java    From wildfly-core with GNU Lesser General Public License v2.1 4 votes vote down vote up
@Message (id = Message.NONE, value = "The value")
String compositeEntryValueDescription();
 
Example 5
Source File: BootableJarLogger.java    From wildfly-core with GNU Lesser General Public License v2.1 4 votes vote down vote up
@Message(id = Message.NONE, value = "Load system properties from the given url")
String argProperties();
 
Example 6
Source File: ServerLogger.java    From wildfly-core with GNU Lesser General Public License v2.1 4 votes vote down vote up
@LogMessage(level = INFO)
@Message(id = Message.NONE, value = "Git initialized in %s")
void gitRespositoryInitialized(String name);
 
Example 7
Source File: ControllerLogger.java    From wildfly-core with GNU Lesser General Public License v2.1 4 votes vote down vote up
@Message(id = Message.NONE, value = "Services that were unable to start:")
String missingTransitiveDependents();
 
Example 8
Source File: DomainManagementLogger.java    From wildfly-core with GNU Lesser General Public License v2.1 2 votes vote down vote up
/**
 * To represent this user use the following secret entry in the server-identities.
 *
 * @return a {@link String} for the message.
 */
@Message(id = Message.NONE, value = "To represent the user add the following to the server-identities definition <secret value=\"%s\" />")
String secretElement(String base64);
 
Example 9
Source File: DomainManagementLogger.java    From wildfly-core with GNU Lesser General Public License v2.1 2 votes vote down vote up
/**
 * Warning that the username is easy to guess.
 *
 * @param username - The new username.
 *
 * @return a {@link String} for the message.
 */
@Message(id = Message.NONE, value = "The username '%s' is easy to guess")
String usernameEasyToGuess(String username);
 
Example 10
Source File: DomainManagementLogger.java    From wildfly-core with GNU Lesser General Public License v2.1 2 votes vote down vote up
/**
 * Prompt the user for the groups to add the user to
 * @return the prompt
 */
@Message(id = Message.NONE, value = "What groups do you want this user to belong to? (Please enter a comma separated list, or leave blank for none)")
String groupsPrompt();
 
Example 11
Source File: DomainManagementLogger.java    From wildfly-core with GNU Lesser General Public License v2.1 2 votes vote down vote up
/**
 * Confirmation if the current user (disabled) is about to be updated.
 *
 * @param user - The name of the user.
 *
 * @return a {@link String} for the message.
 */
@Message(id = Message.NONE, value = "User '%s' already exists and is disabled, would you like to... %n a) Update the existing user password and roles %n b) Enable the existing user %n c) Type a new username")
String aboutToUpdateDisabledUser(String user);
 
Example 12
Source File: DomainManagementLogger.java    From wildfly-core with GNU Lesser General Public License v2.1 2 votes vote down vote up
/**
 * Information message saying the password should not equal any of the restricted values.
 *
 * @param restricted - A list of restricted values.
 * @return a {@link String} for the message.
 */
@Message(id = Message.NONE, value = "The password should not be one of the following restricted values {%s}")
String passwordShouldNotEqualInfo(String restricted);
 
Example 13
Source File: DomainManagementLogger.java    From wildfly-core with GNU Lesser General Public License v2.1 2 votes vote down vote up
/**
 * The short value a user would enter to indicate 'yes'
 *
 * If no short value is available for a specific translation then only the long value will be accepted.
 *
 * This String should be the lower case representation in the respective locale.
 *
 * @return The short value a user would enter to indicate 'yes'.
 */
@Message(id = Message.NONE, value = "y")
String shortYes();
 
Example 14
Source File: ProcessLogger.java    From wildfly-core with GNU Lesser General Public License v2.1 2 votes vote down vote up
/**
 * Instructions for the {@link CommandLineConstants#PROCESS_CONTROLLER_BIND_ADDR} command line argument.
 *
 * @return the message.
 */
@Message(id = Message.NONE, value = "Address on which the process controller listens for communication from processes it controls")
String argPcAddress();
 
Example 15
Source File: ProcessLogger.java    From wildfly-core with GNU Lesser General Public License v2.1 2 votes vote down vote up
/**
 * Instructions for the {@link CommandLineConstants#DEFAULT_MULTICAST_ADDRESS} command line argument.
 *
 * @return the message.
 */
@Message(id = Message.NONE, value = "Set system property jboss.default.multicast.address to the given value")
String argDefaultMulticastAddress();
 
Example 16
Source File: DomainManagementLogger.java    From wildfly-core with GNU Lesser General Public License v2.1 2 votes vote down vote up
/**
 * Simple yes/no prompt.
 *
 * @return a {@link String} for the message.
 */
@Message(id = Message.NONE, value = "yes/no?")
String yesNo();
 
Example 17
Source File: DomainManagementLogger.java    From wildfly-core with GNU Lesser General Public License v2.1 2 votes vote down vote up
/**
 * Instructions for the {@link org.jboss.as.domain.management.security.adduser.AddUser.CommandLineArgument#ROLE} command line argument.
 * @return the message.
 */
@Message(id = Message.NONE, value = "Comma-separated list of roles for the user.")
String argRole();
 
Example 18
Source File: ServerLogger.java    From wildfly-core with GNU Lesser General Public License v2.1 2 votes vote down vote up
/**
 * Instructions for the {@link CommandLineConstants#DEBUG} command line argument.
 *
 * @return the message.
 */
@Message(id = Message.NONE, value = "Activate debug mode with an optional argument to specify the port. Only works if the launch script supports it.")
String argDebugPort();
 
Example 19
Source File: DomainManagementLogger.java    From wildfly-core with GNU Lesser General Public License v2.1 2 votes vote down vote up
/**
 * Instructions for the {@link org.jboss.as.domain.management.security.adduser.AddUser.CommandLineArgument#USER_PROPERTIES} command line argument.
 * @return the message.
 */
@Message(id = Message.NONE, value = "The file name of the user properties file which can be an absolute path.")
String argUserProperties();
 
Example 20
Source File: DomainManagementLogger.java    From wildfly-core with GNU Lesser General Public License v2.1 2 votes vote down vote up
/**
 * Instructions for the {@link org.jboss.as.domain.management.security.adduser.AddUser.CommandLineArgument#SILENT} command line argument.
 * @return the message.
 */
@Message(id = Message.NONE, value = "Activate the silent mode (no output to the console)")
String argSilent();